REST API methods are used to render the UI for new versions of Blockscout. These can be accessed per instance and used to get many types of information. Methods parameters and schemas are available at https://instance-name/api-docs (ie https://eth.blockscout.com/api-docs)Documentation Index
Fetch the complete documentation index at: https://blockscout-mf-14206.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
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.

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).
