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

# List products for an organization



## OpenAPI

````yaml https://api.timbrix.mx/api/openapi.json get /products
openapi: 3.0.0
info:
  title: Timbrix API
  description: >-
    API de facturación electrónica CFDI 4.0 para México, con servidor OAuth2
    para gestionar organizaciones, miembros y webhooks. Compatible con agentes
    de IA — ver la extensión `x-ai-agent-friendly` en la raíz de esta spec.


    REST API with OAuth2 server for managing organizations, members, and
    webhooks.
  version: '1.0'
  contact: {}
servers: []
security: []
tags:
  - name: organizations
    description: Organization management endpoints
  - name: oauth
    description: OAuth2 authentication and authorization
  - name: webhooks
    description: Webhook configuration and delivery
  - name: users
    description: User information endpoints
  - name: api-keys
    description: API Keys management and validation
paths:
  /products:
    get:
      tags:
        - products
      summary: List products for an organization
      operationId: ProductsController_list
      parameters:
        - name: X-Organization-Id
          in: header
          description: >-
            Required for Supabase session auth. Ignored when authenticating with
            an API key (the organization resolves from the key).
          required: false
          schema:
            type: string
        - name: description
          required: false
          in: query
          description: Filter by description (partial match)
          schema:
            type: string
            example: Ukelele
        - name: sku
          required: false
          in: query
          description: Filter by SKU (partial match)
          schema:
            example: UKL
            type: string
        - name: productKey
          required: false
          in: query
          description: Filter by SAT product key (exact match)
          schema:
            type: number
            example: 60131324
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProductResponseDto'
        '400':
          description: Missing X-Organization-Id header for a session request
      security:
        - apiKey: []
        - bearer: []
components:
  schemas:
    ProductResponseDto:
      type: object
      properties:
        id:
          type: string
          example: 590ce6c56d04f840aa8438af
        organizationId:
          type: string
          example: org-uuid
        livemode:
          type: boolean
          example: false
        description:
          type: string
          example: Ukelele
        productKey:
          type: number
          example: 60131324
        price:
          type: number
          example: 345.6
        taxIncluded:
          type: boolean
          example: true
        taxability:
          type: string
          example: '01'
        taxes:
          type: array
          items:
            $ref: '#/components/schemas/TaxDto'
        localTaxes:
          type: array
          items:
            $ref: '#/components/schemas/TaxDto'
        unitKey:
          type: string
          example: H87
        unitName:
          type: string
          example: Elemento
        sku:
          type: object
          example: UKL-001
        createdAt:
          format: date-time
          type: string
        updatedAt:
          format: date-time
          type: string
      required:
        - id
        - organizationId
        - livemode
        - description
        - productKey
        - price
        - taxIncluded
        - taxability
        - taxes
        - localTaxes
        - unitKey
        - unitName
        - createdAt
        - updatedAt
    TaxDto:
      type: object
      properties:
        type:
          type: string
          example: IVA
        rate:
          type: number
          example: 0.16
        withholding:
          type: boolean
          example: false
        factor:
          type: string
          example: Tasa
      required:
        - type
        - rate
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: 'API Key for authentication (format: sk_...)'
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````