curl --request GET \
--url https://api.onsleek.ai/v2/products \
--header 'Authorization: Bearer <token>'{
"data": [
{
"lastViewedAt": "<string>",
"url": "<string>",
"name": "<string>",
"price": 123,
"currencyCode": "<string>",
"brandName": "<string>",
"description": "<string>",
"imageUrls": [
"<string>"
],
"categoryId": "<string>",
"categoryVersion": "<string>",
"categoryBreadcrumb": "<string>",
"asin": "<string>",
"sku": "<string>",
"gtin": "<string>",
"mpn": "<string>",
"ratingValue": 123,
"ratingCount": 123,
"bestRating": 123,
"worstRating": 123,
"history": [
{
"yearMonthDay": "<string>",
"price": 123,
"views": 123
}
]
}
],
"nextPage": "<string>"
}Retrieve all products in the Sleek product feed. The response is paginated, and the nextPage can be used to fetch the next page.
curl --request GET \
--url https://api.onsleek.ai/v2/products \
--header 'Authorization: Bearer <token>'{
"data": [
{
"lastViewedAt": "<string>",
"url": "<string>",
"name": "<string>",
"price": 123,
"currencyCode": "<string>",
"brandName": "<string>",
"description": "<string>",
"imageUrls": [
"<string>"
],
"categoryId": "<string>",
"categoryVersion": "<string>",
"categoryBreadcrumb": "<string>",
"asin": "<string>",
"sku": "<string>",
"gtin": "<string>",
"mpn": "<string>",
"ratingValue": 123,
"ratingCount": 123,
"bestRating": 123,
"worstRating": 123,
"history": [
{
"yearMonthDay": "<string>",
"price": 123,
"views": 123
}
]
}
],
"nextPage": "<string>"
}API key for accessing the Sleek API.
The product page to fetch.
Products.
Show child attributes
The last viewed at timestamp.
The URL of the product.
The name of the product.
The most recent price for a single unit of the product.
The ISO 4217 currency code for the price.
The brand name of the product.
A description of the product.
The URLs of the product images.
The category ID for this product.
The version of the category for this product.
The category breadcrumb for this product.
The Amazon Standard Identification Number for the product.
The Stock Keeping Unit identifier for the product.
The Global Trade Item Number for the product.
The Manufacturer Part Number for the product.
The average rating value for the product.
The total number of ratings for the product.
The best rating value for the product.
The worst rating value for the product.
The price and total views history for the product.