> For the complete documentation index, see [llms.txt](https://developer.gospace.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.gospace.com/pagination.md).

# Pagination

In this guide, we will look at how to work with paginated responses when querying the gospace API. The default limit for all responses is 25. However, this can be overwritten by adding a `limit` parameter to your requests (50000 max or 10Mb).&#x20;

Pagination is supported on all endpoints that return an array of objects. In paginated responses, objects are nested in a `data` attribute. You can use the `limit` and `skip` query parameters to browse pages.

{% code title="RESPONSE" fullWidth="false" %}

```typescript
{
    success: true,
    identifier: <request identifier>,
    data: {
        [response key]: [...],
        pagination: {
            current_results: {
                from: 1,
                to: 25
            },
            total_results: 100
        },
        identifier: <endpoint identifier>
    }
}
```

{% endcode %}
