GET
/
products
/
{marketplace}
/
{asin}
curl --request GET \
  --url https://app.levanta.io/api/creator/v1/products/{marketplace}/{asin} \
  --header 'Authorization: Bearer <token>'
{
  "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>",
  "parentAsin": "<string>",
  "variations": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

asin
string
required

Amazon Standard Identifier (ASIN) for an Amazon product. Example: B09G9FPHY6

marketplace
enum<string>
required
Available options:
amazon.com,
amazon.co.uk,
amazon.ca,
amazon.de,
amazon.fr

Response

200
application/json

Success

The response is of type object.