# Pagination

For `GET /` requests that list entities, the standard response includes the total number of entities available (`total` property), the number of returned entities (`limit` property) and the number of entities that have been skipped (`skip` property).

A standard response looks like this:

```javascript
{
    "total": 100,
    "limit": 10,
    "skip": 0,
    "data": [
        ...
    ]
}
```

You can control this behavior and paginate the returned entities with the following query-string parameters:

| Parameter | Description                                                          |
| --------- | -------------------------------------------------------------------- |
| `$limit`  | Number of items to return (it usually has to be lower than 100)      |
| `$skip`   | Number of skipped items (ie offset of the first item to be returned) |


---

# 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://developers.didomi.io/api-and-platform/introduction/pagination.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.
