GET
/
products
curl --request GET \
  --url https://app.levanta.io/api/creator/v2/preview/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "ids": [
        {
          "label": "ASIN",
          "value": "<string>"
        }
      ],
      "title": "<string>",
      "image": "<string>",
      "category": "<string>",
      "price": {
        "currency": "<string>",
        "value": "<string>"
      },
      "commission": {
        "sellerCommission": "<string>",
        "marketplaceCommission": "<string>",
        "totalCommission": "<string>"
      },
      "availability": "IN_STOCK",
      "marketplace": "amazon.com",
      "access": true
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

marketplace
enum<string>
required

Represents a Levanta marketplace (ex: amazon.co.uk, walmart.com). If "all" is specified then the scope is all marketplaces.

Available options:
all,
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr,
walmart.com
access
enum<string>

Whether or not to only return products for brands that you have an active partnership with

Available options:
true,
false
limit
number
default:100

The maximum number of items to return

Required range: 1 <= x <= 500
cursor
string

The cursor returned from the last request, if omitted the first page will be returned

Maximum length: 512

Response

200
application/json

Success

The response is of type object.