hi again,
I tried to fetch data nft transfer data via get nft/{address}/transfer using python.
total data to fetch is 5000 records using following curl link:
what the script retrieved is only 500 data . manual json download confirms only 500 data as well.
this is the script
Ttransfer=‘https://deep-index.moralis.io/api/v2/nft/0xd279d7e46f73961812c4853e065d0096a2657a71/transfers?chain=bsc&format=decimal&offset=5000&limit=500’
trfresponse = requests.request(“GET”, Ttransfer, headers=headers)
trfresp = trfresponse.json()
trfrel = trfresp[‘result’]tokenID = []
for k in trfrel:
tokid = (k[‘token_id’])
tokenID.append(tokid)print(len(tokenID))
am i missing something? thank you again!