Pagination
In Stoovo API, when you request for address attributes in rare case, we might need to paginate. In those cases, while requesting a list of records, the response will usually contain the following fields:
Field | Description |
---|---|
count | The total number of results. |
previous | A URL to the previous page, or null if this is the first page. |
next | A URL to the next page, or null if this is the last page. |
Below is an example response:
{
"count": 12,
"previous": null,
"next": "https://api.stoovo.com/v1/entrances/?offset=10&limit=10",
"results": [
{
// record 1
},
{
// record 2
}
// more records
]
}
Individual API Endpoint documentation will describe specific response formats.
You can control the result records that are returned using the standard
offset
and limit
query string parameters. If no limit is specified, then a default of 10
applies.Last modified 1mo ago