# REST API Endpoints

REST API methods are used to render the UI for new versions of Blockscout. These can be accessed and used to get many types of information. Methods parameters and schemas are available at <https://quaiscan.io/api-docs>.

<figure><img src="/files/pRUamdWRwmoadLaPIbKn" alt=""><figcaption></figcaption></figure>

## Pagination

Quaiscan 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 the `next_page_params` to your query.

For example, open <https://quaiscan.io/api/v2/transactions> and scroll to the bottom of the response.

<figure><img src="/files/GAbdV2U7IC6gsOFtw7v3" alt=""><figcaption></figcaption></figure>

You will see the `next_page_params` object. Add the parameters from this object to your next query to receive the next 50 results.

<https://quaiscan.io/api/v2/transactions?block_number=4023&index=12&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).

In this example, the query to receive the next 50 results would be:

<https://quaiscan.io/api/v2/transactions?block_number=4023&index=69&items_count=100>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.quaiscan.io/developer-support/api/rest-api-endpoints.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
