π External Public API > Pagination β
The API supports pagination for all endpoints that return a list of entities. For instance, the List Variables endpoint returns a list of vatiables. This list can be paginated by using the size and page query parameters.
Query Parameters β
| Parameter | Type | Description | Default | Required |
|---|---|---|---|---|
page | integer | The page number to retrieve. Starts at 0. | 0 | false |
size | integer | The number of items per page. The maximum value is 1000. | 20 | false |
Example β
For instance, the List Variables endpoint returns a list of variables. This list can be paginated by using the size and page query parameters.
bash
curl --request GET \
--url 'https://api.stage.product-live.com/v1/data_factory/variables?page=1&size=5' \
--header 'Content-Type: application/json' \
--header 'X-Api-Key: [REDACTED]]'1
2
3
4
2
3
4