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

# List Products For Sync



## OpenAPI

````yaml /api-reference/openapi.json get /api/sync/v1/products
openapi: 3.1.0
info:
  title: Agentic Commerce API
  description: |2-

        Agentic Commerce API - E-commerce Backend

        ## APIs

        ### Dashboard API (`/api/dashboard`)
        Authenticated endpoints for merchant management:
        - Products, Variants, Options
        - Inventory management
        - Orders and fulfillment
        - Customers
        - Collections

        ### Storefront API (`/api/storefront`)
        Public endpoints for client websites:
        - Product catalog
        - Collections
        - Cart management
        - Checkout

        ### Sync API (`/api/sync`)
        Integration endpoints for zunkiree-search:
        - Product sync
        - Availability checks
        - Order creation from AI widget
        
  version: 1.0.0
servers: []
security: []
paths:
  /api/sync/v1/products:
    get:
      tags:
        - Sync v1
        - Sync v1 Products
      summary: List Products For Sync
      operationId: list_products_for_sync_api_sync_v1_products_get
      parameters:
        - name: updated_since
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: date-time
              - type: 'null'
            title: Updated Since
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
            title: Page
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
        - name: X-Stella-Site-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Stella-Site-Id
        - name: X-Sync-Secret
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Sync-Secret
        - name: X-Site-ID
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Site-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SyncProductListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SyncProductListResponse:
      properties:
        products:
          items:
            $ref: '#/components/schemas/SyncProductResponse'
          type: array
          title: Products
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        limit:
          type: integer
          title: Limit
        has_more:
          type: boolean
          title: Has More
      type: object
      required:
        - products
        - total
        - page
        - limit
        - has_more
      title: SyncProductListResponse
      description: Paginated product list for sync.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SyncProductResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Slug
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        vendor:
          anyOf:
            - type: string
            - type: 'null'
          title: Vendor
        product_type:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Type
        tags:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Tags
        price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price
        compare_at_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Compare At Price
        currency:
          type: string
          title: Currency
        images:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Images
        has_variants:
          type: boolean
          title: Has Variants
        options:
          items:
            additionalProperties: true
            type: object
          type: array
          title: Options
        variants:
          items:
            $ref: '#/components/schemas/SyncVariantResponse'
          type: array
          title: Variants
        in_stock:
          type: boolean
          title: In Stock
        status:
          type: string
          title: Status
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - name
        - slug
        - description
        - vendor
        - product_type
        - tags
        - price
        - compare_at_price
        - currency
        - images
        - has_variants
        - options
        - variants
        - in_stock
        - status
        - created_at
        - updated_at
      title: SyncProductResponse
      description: Full product data for sync.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    SyncVariantResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        sku:
          anyOf:
            - type: string
            - type: 'null'
          title: Sku
        barcode:
          anyOf:
            - type: string
            - type: 'null'
          title: Barcode
        option1:
          anyOf:
            - type: string
            - type: 'null'
          title: Option1
        option2:
          anyOf:
            - type: string
            - type: 'null'
          title: Option2
        option3:
          anyOf:
            - type: string
            - type: 'null'
          title: Option3
        price:
          type: string
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Price
        compare_at_price:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Compare At Price
        inventory_quantity:
          type: integer
          title: Inventory Quantity
        available:
          type: boolean
          title: Available
        image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Image Url
        weight:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Weight
        weight_unit:
          type: string
          title: Weight Unit
      type: object
      required:
        - id
        - sku
        - barcode
        - option1
        - option2
        - option3
        - price
        - compare_at_price
        - inventory_quantity
        - available
        - image_url
        - weight
        - weight_unit
      title: SyncVariantResponse
      description: Variant data for sync.

````