> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.levanta.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Product by Marketplace/ASIN

> Get a product by its unique marketplace/asin pair



## OpenAPI

````yaml https://app.levanta.io/api/creator/v1/openapi.json get /products/{marketplace}/{asin}
openapi: 3.1.0
info:
  version: 1.0.0
  title: Levanta Creator API
  description: >-
    Authorize all requests with an API key in the Authorization header as the
    second token. E.g. Authorization -> "Bearer {api_key}".
servers:
  - url: https://app.levanta.io/api/creator/v1
security: []
externalDocs:
  url: https://app.levanta.io/creator/api-docs
paths:
  /products/{marketplace}/{asin}:
    get:
      tags:
        - Products
      summary: Get Product by Marketplace/ASIN
      description: Get a product by its unique marketplace/asin pair
      operationId: GetProductByAsinMarketplaceDomain
      parameters:
        - schema:
            type: string
            description: >-
              Amazon Standard Identifier (ASIN) for an Amazon product. Example:
              B09G9FPHY6
          required: true
          description: >-
            Amazon Standard Identifier (ASIN) for an Amazon product. Example:
            B09G9FPHY6
          name: asin
          in: path
        - schema:
            type: string
            enum:
              - amazon.com
              - amazon.co.uk
              - amazon.com.mx
              - amazon.ca
              - amazon.de
              - amazon.es
              - amazon.fr
              - amazon.it
              - amazon.nl
          required: true
          name: marketplace
          in: path
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  asin:
                    type: string
                    description: >-
                      Amazon Standard Identifier (ASIN) for an Amazon product.
                      Example: B09G9FPHY6
                  marketplace:
                    type: string
                    enum:
                      - amazon.com
                      - amazon.co.uk
                      - amazon.com.mx
                      - amazon.ca
                      - amazon.de
                      - amazon.es
                      - amazon.fr
                      - amazon.it
                      - amazon.nl
                    description: Represents an Amazon marketplace.
                  pricing:
                    type: object
                    properties:
                      price:
                        type: number
                      currency:
                        type: string
                        enum:
                          - USD
                          - GBP
                          - CAD
                          - EUR
                          - MXN
                    required:
                      - price
                      - currency
                  commission:
                    type: number
                  title:
                    type: string
                    description: The amazon title of the product
                  inStock:
                    type: boolean
                  category:
                    type: string
                  brandId:
                    type: string
                    format: uuid
                    description: The ID of the brand the product is associated with
                  access:
                    type: boolean
                    description: >-
                      true when you have an active partnership with the brand
                      the product is associated with
                  image:
                    type: string
                  rating:
                    type:
                      - string
                      - 'null'
                    description: Current rating of the product
                  ratingsTotal:
                    type:
                      - number
                      - 'null'
                    description: Total number of ratings for this product
                  platformEpc:
                    type:
                      - number
                      - 'null'
                    description: >-
                      Earnings-per-click for the product on Levanta, if
                      available. Otherwise null.
                  parentAsin:
                    type:
                      - string
                      - 'null'
                  variations:
                    type: array
                    items:
                      type: string
                required:
                  - asin
                  - marketplace
                  - pricing
                  - commission
                  - title
                  - inStock
                  - category
                  - brandId
                  - access
                  - image
                  - rating
                  - ratingsTotal
                  - platformEpc
                  - parentAsin
                  - variations
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                    enum:
                      - Unauthorized
                required:
                  - status
                  - message
        '404':
          description: Product Not Found
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 404
                  message:
                    type: string
                    enum:
                      - Product Not Found
                required:
                  - status
                  - message
        '422':
          description: Input Validation Failed
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 422
                  message:
                    type: string
                    enum:
                      - Input Validation Failed
                required:
                  - status
                  - message
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````