[SOLVED] Any way to change max page_size for ERC20 Transactions API?

See title.

When I use the erc20/transfers endpoint and I have over 500 tx’s, I only get 500. Is there a way to set this so I can get more?

Yes you can use the offset parameter to skip the first 500 and get the “next page” (basically you have to get them in 2 calls)

1 Like

You will have to use pagination to get more results. The max page size is 500. For next page you can use parameter offset with value 500 or cursor directly if you use the REST api

1 Like

Got it thanks for the help!

2 Likes