No Filter
Request all products without any filter parameters.
1 min read
No filter
When requesting the endpoint without any explicit filter parameters, the API returns only the first 100 results.
Default limit is 100 and offset is 0. Minimum value for limit is 1; values above 1000 are silently capped to 1000 rather than rejected.
URL example
/sites/{siteId}/channels/{channelId}/destinations/{destinationId}/productsSQL equivalent
SELECT * FROM data LIMIT 100Demo request
curl --location \
--request GET 'https://export-api.productsup.com/sites/522103/channels/302481/destinations/154110/products' \
--header 'X-EA-Auth-Token: kx0g3jwi0121jwj12j1x'Sample JSON response
[
{
"color": "White",
"countryCode": "MN",
"email": "dallin80@hayes.com",
"id": "32f1ce5593d13cb2a36cb57b943eb2b3",
"name": "Reymundo Marvin Jr."
},
{
"color": "DimGrey",
"countryCode": "MK",
"email": "julianne73@hotmail.com",
"id": "d8d84606e8b063240797697f43988a24",
"name": "Edythe Murray"
},
...
]How is this guide?