GET
/
products
curl --request GET \
  --url https://app.levanta.io/api/creator/v1/products \
  --header 'Authorization: Bearer <token>'
{
  "products": [
    {
      "asin": "<string>",
      "marketplace": "amazon.com",
      "pricing": {
        "price": 123,
        "currency": "USD"
      },
      "commission": 123,
      "title": "<string>",
      "inStock": true,
      "category": "<string>",
      "brandId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "access": true,
      "image": "<string>"
    }
  ],
  "cursor": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
number
default:100

The maximum number of items to return

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

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

Maximum length: 512
asins
string

Comma-delimited list of ASINs representing an array. Example: B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]

brand_ids
string

Comma-delimited list of strings representing an array. Example: 1,2,3 equivalent to [1,2,3]

in_stock
enum<string>
Available options:
true,
false
access
enum<string>

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

Available options:
true,
false
marketplace
enum<string>
default:amazon.com

Represents an Amazon marketplace. If "all" is specified then the scope is all marketplaces.

Available options:
all,
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr

Response

200
application/json
Success
products
object[]
required
cursor
string | null
required

The cursor to use for the next request, if empty there are no more items to return