Additional information:
- Stats queries: Access pre-calculated statistics for a chain
- Interpreter queries: Transactions populated with contract names, methods, etc for easy interpretation


Pagination
Blockscout uses the keyset pagination method to quickly return results. By default an API response returns the first 50 results. To access additional results (in groups of 50), add thenext_page_params
to your query.
For example, open https://eth.blockscout.com/api/v2/transactions and scroll to the bottom of the response.

Example response from transactions query
next_page_params
object. Add the parameters from this object to your next query to receive the next 50 results.
https://eth.blockscout.com/api/v2/transactions?block_number=18678766&index=119&items_count=50
Repeat this process to continue receiving results in groups of 50 (remove params and substitute the new next_page_params
found in the body of the query).
