GET
/
v1
/
products
Get all products
curl --request GET \
  --url https://api.onsleek.ai/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "name": "<string>",
      "price": 123,
      "currencyCode": "<string>",
      "quantity": 123,
      "url": "<string>",
      "imageUrls": [
        "<string>"
      ],
      "description": "<string>",
      "categoryId": "<string>",
      "categoryBreadcrumb": "<string>",
      "categoryVersion": "<string>",
      "brandName": "<string>",
      "gtin": "<string>",
      "mpn": "<string>",
      "sku": "<string>",
      "asin": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

API key for accessing the Sleek API.

Query Parameters

cursor
string

The cursor to fetch the next page of products.

domain
string

The domain of the products to fetch.

hostname
string

The hostname of the products to fetch.

limit
number

The number of products to fetch. Maximum 1000

Response

200 - application/json

Products.

The response is of type object.