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

# List Products

> List products for the authenticated organization with optional filters and pagination. Supports API key Bearer token authentication.



## OpenAPI

````yaml /openapi.json get /api/v1/products
openapi: 3.1.0
info:
  title: OmniCommerce API
  version: 1.0.0
  license:
    name: Proprietary
    url: https://omnicommerce.sg/terms
  description: >-
    OmniCommerce API surface for agents and developer integrations. Includes
    public endpoints (merchant discovery, product search, compare, catalog, ACO
    retrieval) and authenticated endpoints (product management via API key
    Bearer tokens).
servers:
  - url: https://omnicommerce.sg
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags:
  - name: agentic-checkout
    description: Merchant-fulfilled agentic checkout
    x-group: Agentic Checkout
  - name: commerce
    description: Root commerce discovery
    x-group: Commerce
  - name: developer-platform
    description: Authenticated developer platform APIs
    x-group: Developer Platform
  - name: looks
    description: AI-styled product looks
    x-group: Looks
  - name: oauth
    description: OAuth token endpoints
    x-group: OAuth
  - name: orders
    description: Workspace and agentic orders
    x-group: Orders
  - name: organizations
    description: Organization management
    x-group: Organizations
  - name: price-books
    description: Marketplace list-price markup rules
    x-group: Price Books
  - name: products
    description: Product CRUD, bulk import, and publish
    x-group: Products
  - name: promotions
    description: Central promotions and marketplace sync
    x-group: Promotions
  - name: public-agent
    description: Public agent discovery and catalog APIs
    x-group: Public Agent
  - name: settlements
    description: settlements
    x-group: Settlements
  - name: ucp
    description: Universal Commerce Protocol
    x-group: UCP
paths:
  /api/v1/products:
    get:
      tags:
        - products
      summary: List Products
      description: >-
        List products for the authenticated organization with optional filters
        and pagination. Supports API key Bearer token authentication.
      operationId: get_v1_products
      parameters:
        - name: status
          in: query
          required: false
          description: Filter by product status.
          schema:
            type: string
            enum:
              - draft
              - active
              - archived
              - deleted
        - name: marketplace
          in: query
          required: false
          description: Filter by enabled marketplace.
          schema:
            type: string
            enum:
              - shopee
              - lazada
              - tiktok
              - shopify
              - zalora
              - amazon
        - name: country
          in: query
          required: false
          description: Filter by marketplace country (e.g., Singapore, Malaysia).
          schema:
            type: string
            maxLength: 80
        - name: q
          in: query
          required: false
          description: Search query for product name or SKU.
          schema:
            type: string
            maxLength: 200
        - name: minPrice
          in: query
          required: false
          description: Minimum price filter.
          schema:
            type: number
            minimum: 0
        - name: maxPrice
          in: query
          required: false
          description: Maximum price filter.
          schema:
            type: number
            minimum: 0
        - name: sortBy
          in: query
          required: false
          description: Sort order for results.
          schema:
            type: string
            enum:
              - updatedAt
              - createdAt
              - name
              - price
            default: updatedAt
        - name: limit
          in: query
          required: false
          description: >-
            Result limit per page. Values above the cap are clamped silently;
            the applied value is returned in `pagination.limit`. Defaults to 20.
          schema:
            type: integer
            minimum: 1
            maximum: 50
            default: 20
        - name: offset
          in: query
          required: false
          description: >-
            Zero-based pagination offset. Use `pagination.nextOffset` from the
            previous response to page forward. Defaults to 0.
          schema:
            type: integer
            minimum: 0
            default: 0
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                  hasMore:
                    type: boolean
                  nextOffset:
                    type: integer
                  summary:
                    type: object
                    properties:
                      totalCount:
                        type: integer
                      statusCounts:
                        type: object
                  pagination:
                    type: object
                    description: >-
                      Echoes the offset/limit actually applied to the query
                      (after clamping) plus discovery metadata for paging.
                    properties:
                      offset:
                        type: integer
                        description: Offset that was applied to this page.
                      limit:
                        type: integer
                        description: >-
                          Limit that was applied to this page (after clamping to
                          `maxLimit`).
                      total:
                        type: integer
                        description: >-
                          Total number of records matching the filters, ignoring
                          offset/limit.
                      hasMore:
                        type: boolean
                      nextOffset:
                        type:
                          - integer
                          - 'null'
                        description: Null when `hasMore` is false.
                      maxLimit:
                        type: integer
                        description: Server-side maximum for the `limit` query parameter.
                      defaultLimit:
                        type: integer
                        description: Default `limit` applied when none is provided.
                    required:
                      - offset
                      - limit
                      - total
                      - hasMore
                      - nextOffset
                      - maxLimit
                      - defaultLimit
        '401':
          description: Unauthorized - Invalid or missing Bearer token
        '403':
          description: Forbidden - Token not authorized for this organization
        '500':
          description: Internal Server Error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Bearer API key for server-to-server access. Session auth is also
        supported in first-party UI flows.

````