Pagination metadata
Meta model representing pagination information. Used for th majority of request.
limitinteger | nullnullable
Number of results in the current results
nextstring,null<uri-reference>nullable
URL to retrieve next page with data
offsetinteger
Offset in the requested collection from which the current results start.
previousstring | nullnullable
URI of the previous page
total_countinteger
Total number of items in the collection
has_moreboolean | nullnullable
true if there are more pages left to retrieve, otherwise false
query_slugstring | nullnullable
Indicates if the reponse used custom data query slug
database_usedstring | nullnullable
Pagination metadata
{
"limit": 0,
"next": "string",
"offset": 0,
"previous": "string",
"total_count": 0,
"has_more": true,
"query_slug": "string",
"database_used": "string"
}