I am interested in a few APIs. Below is one of them but I am getting only 500 records in response whereas the token contract I used has more than 1.4k holders
Please guide me about how I can fetch all the records.
Regards,
Ananta.
I am interested in a few APIs. Below is one of them but I am getting only 500 records in response whereas the token contract I used has more than 1.4k holders
Please guide me about how I can fetch all the records.
Regards,
Ananta.
usually you have to use pagination with offset parameter, for first page offset is 0, for second page offset is 500, assuming that you keep the limit to 500
Ideally - use cursor instead of offset and limit - it will use less requests
thanks! Please share ref link to use it