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

# List Products



## OpenAPI

````yaml https://clientapi.retailgrid.io/openapi.json get /v1/products
openapi: 3.1.0
info:
  title: Retailgrid Public API
  version: v1
servers: []
security: []
paths:
  /v1/products:
    get:
      tags:
        - products
      summary: List Products
      operationId: list_products_v1_products_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 1000
            minimum: 1
            default: 100
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
        - name: updated_since
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated Since
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CursorPage_ProductExport_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CursorPage_ProductExport_:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ProductExport'
          type: array
          title: Items
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      title: CursorPage[ProductExport]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ProductExport:
      properties:
        product_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Id
        product_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Name
        product_group:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Group
        manufacturer:
          anyOf:
            - type: string
            - type: 'null'
          title: Manufacturer
        brand:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand
        status:
          anyOf:
            - type: string
            - type: 'null'
          title: Status
        product_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Type
        barcode:
          anyOf:
            - type: string
            - type: 'null'
          title: Barcode
        stock_on_hand:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Stock On Hand
        category_1:
          anyOf:
            - type: string
            - type: 'null'
          title: Category 1
        category_2:
          anyOf:
            - type: string
            - type: 'null'
          title: Category 2
        category_3:
          anyOf:
            - type: string
            - type: 'null'
          title: Category 3
        category_4:
          anyOf:
            - type: string
            - type: 'null'
          title: Category 4
        category_5:
          anyOf:
            - type: string
            - type: 'null'
          title: Category 5
        image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Image Url
        product_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Url
        rrp:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Rrp
        regular_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Regular Price
        product_created_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Product Created Date
        price_effective_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Price Effective Date
        cost_effective_date:
          anyOf:
            - type: string
              format: date
            - type: 'null'
          title: Cost Effective Date
        size:
          anyOf:
            - type: string
            - type: 'null'
          title: Size
        color:
          anyOf:
            - type: string
            - type: 'null'
          title: Color
        uom:
          anyOf:
            - type: string
            - type: 'null'
          title: Uom
        tax_rate:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Tax Rate
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        id:
          type: string
          format: uuid
          title: Id
        item_id:
          type: string
          title: Item Id
        sku:
          type: string
          title: Sku
        sku_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Sku Name
        current_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Current Price
        unit_cost:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Unit Cost
        custom_fields:
          anyOf:
            - additionalProperties:
                anyOf:
                  - type: string
                  - type: string
                    pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
                  - type: string
                    format: date
                  - type: string
                    format: date-time
                  - type: boolean
                  - type: 'null'
              type: object
            - type: 'null'
          title: Custom Fields
      additionalProperties: false
      type: object
      required:
        - id
        - item_id
        - sku
      title: ProductExport
      description: >-
        ``GET /v1/products`` item shape — adds a typed ``custom_fields`` map.


        Inherits every ``ProductResponse`` field. ``custom_fields`` is keyed by

        ``field_key`` and resolved from the optional parent product; a value may
        be

        ``None`` when the underlying ``value_text`` is null but a definition
        exists.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````