Pagination
Paginate over the total product set using limit and offset parameters.
Pagination
The pagination parameters limit and offset are applicable to all requests - with or without filtering - and can be used to paginate over the total product set. The maximum value for the limit parameter is 1000.
URL Example
/sites/{siteId}/channels/{channelId}/destinations/{destinationId}/products?limit=10&offset=50000SQL Equivalent
SELECT * FROM data LIMIT 5000 OFFSET 10000Demo Request
curl --location \
--request GET 'https://export-api.productsup.com/sites/522103/channels/302481/destinations/154110/products?limit=10&offset=50000' \
--header 'X-EA-Auth-Token: kx0g3jwi0121jwj12j1x'Sample JSON Response
[
{
"color": "Indigo",
"countryCode": "GA",
"email": "wolff.morton@stoltenberg.net",
"id": "d9c5d27054bc192aba88737120fbbd2f",
"name": "Keshawn Tillman"
},
...
]How is this guide?