> ## 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.

# List Products

> List your products. Filter by brand IDs and ASINs.



## OpenAPI

````yaml https://app.levanta.io/api/seller/v1/openapi.json get /products
openapi: 3.1.0
info:
  version: 1.0.0
  title: Levanta Seller 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/seller/v1
security: []
externalDocs:
  url: https://app.levanta.io/seller/api-docs
paths:
  /products:
    get:
      tags:
        - Products
      summary: List Products
      description: List your products. Filter by brand IDs and ASINs.
      operationId: ListProducts
      parameters:
        - schema:
            type: number
            minimum: 1
            maximum: 100
            default: 25
            description: The maximum number of items to return
          required: false
          description: The maximum number of items to return
          name: limit
          in: query
        - schema:
            type: string
            maxLength: 512
            description: >-
              The cursor returned from the last request, if omitted the first
              page will be returned
          required: false
          description: >-
            The cursor returned from the last request, if omitted the first page
            will be returned
          name: cursor
          in: query
        - schema:
            type: string
            description: >-
              Comma-delimited list of strings representing an array. Example:
              1,2,3 equivalent to [1,2,3]
          required: false
          description: >-
            Comma-delimited list of strings representing an array. Example:
            1,2,3 equivalent to [1,2,3]
          name: brand_ids
          in: query
        - schema:
            type: string
            description: >-
              Comma-delimited list of ASINs representing an array. Example:
              B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]
          required: false
          description: >-
            Comma-delimited list of ASINs representing an array. Example:
            B09G9FPHY6,B09G9FPHY7 equivalent to [B09G9FPHY6,B09G9FPHY7]
          name: asins
          in: query
        - schema:
            type: string
            enum:
              - 'true'
              - 'false'
          required: false
          name: active
          in: query
        - schema:
            type: string
            enum:
              - all
              - amazon.com
              - amazon.co.uk
              - amazon.com.mx
              - amazon.ca
              - amazon.de
              - amazon.es
              - amazon.fr
              - amazon.it
              - amazon.nl
            default: amazon.com
            description: >-
              Represents an Amazon marketplace. If "all" is specified then the
              scope is all marketplaces.
          required: false
          description: >-
            Represents an Amazon marketplace. If "all" is specified then the
            scope is all marketplaces.
          name: marketplace
          in: query
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  products:
                    type: array
                    items:
                      type: object
                      properties:
                        asin:
                          type: string
                          description: >-
                            Amazon Standard Identifier (ASIN) for an Amazon
                            product. Example: B09G9FPHY6
                        pricing:
                          type: object
                          properties:
                            price:
                              type: number
                            currency:
                              type: string
                              enum:
                                - USD
                                - GBP
                                - CAD
                                - EUR
                                - MXN
                          required:
                            - price
                            - currency
                        commissionPercentage:
                          type: number
                        title:
                          type: string
                        inStock:
                          type: boolean
                        category:
                          type: string
                        brandId:
                          type: string
                          format: uuid
                        active:
                          type: boolean
                          description: Whether or not the product is active in Levanta
                        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.
                      required:
                        - asin
                        - pricing
                        - commissionPercentage
                        - title
                        - inStock
                        - category
                        - brandId
                        - active
                        - marketplace
                  cursor:
                    type:
                      - string
                      - 'null'
                    description: >-
                      The cursor to use for the next request, if empty there are
                      no more items to return
                required:
                  - products
                  - cursor
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: number
                    enum:
                      - 401
                  message:
                    type: string
                    enum:
                      - Unauthorized
                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

````