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

# List Products

> List products for the current tenant with optional filters.



## OpenAPI

````yaml /api-reference/openapi.json get /api/knowledge/products
openapi: 3.1.0
info:
  title: Big Panda — Public API
  description: >-
    Externe REST-API für Connector-Plugins (JTL, Shopware), n8n-Integrationen
    und Custom-Clients. Tenant-Routing über Subdomain, Auth über Bearer-Token.
  version: 0.1.0
servers:
  - url: https://{tenant}.app.big-panda.ai
    description: Big Panda — Tenant-Subdomain. Ersetze {tenant} durch deinen Tenant-Slug.
    variables:
      tenant:
        default: demo
        description: Dein Big-Panda-Tenant-Slug (z.B. 'acme').
security:
  - BearerAuth: []
tags:
  - name: Products
  - name: Knowledge Entries
  - name: Categories
  - name: Sites
  - name: Search
  - name: OAuth
    description: >-
      OAuth-2.1-Authentifizierung — Discovery, Dynamic Client Registration,
      Authorize, Token, Revoke.
paths:
  /api/knowledge/products:
    get:
      tags:
        - Products
      summary: List Products
      description: List products for the current tenant with optional filters.
      operationId: list_products_products_get
      parameters:
        - name: site_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by site (UUID or slug)
            title: Site Id
          description: Filter by site (UUID or slug)
        - name: language
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Language
            description: Filter by language
          description: Filter by language
        - name: category
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by category
            title: Category
          description: Filter by category
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ProductResponse'
                title: Response List Products Products Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ProductResponse:
      properties:
        id:
          type: string
          title: Id
        tenant_id:
          type: string
          title: Tenant Id
        site_id:
          type: string
          title: Site Id
        external_id:
          anyOf:
            - type: string
            - type: 'null'
          title: External Id
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        short_description:
          anyOf:
            - type: string
            - type: 'null'
          title: Short Description
        sku:
          anyOf:
            - type: string
            - type: 'null'
          title: Sku
        gtin:
          anyOf:
            - type: string
            - type: 'null'
          title: Gtin
        brand:
          anyOf:
            - type: string
            - type: 'null'
          title: Brand
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        attributes:
          additionalProperties: true
          type: object
          title: Attributes
        properties:
          additionalProperties: true
          type: object
          title: Properties
        price_current:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price Current
        price_msrp:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price Msrp
        price_special:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Price Special
        price_on_request:
          type: boolean
          title: Price On Request
        currency:
          type: string
          title: Currency
        image_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Image Url
        additional_images:
          items: {}
          type: array
          title: Additional Images
        product_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Product Url
        availability:
          anyOf:
            - type: string
            - type: 'null'
          title: Availability
        rating_average:
          anyOf:
            - type: string
              pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
            - type: 'null'
          title: Rating Average
        rating_count:
          type: integer
          title: Rating Count
        language:
          type: string
          title: Language
        translation_group_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Translation Group Id
        parent_product_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Parent Product Id
        is_variant:
          type: boolean
          title: Is Variant
        is_parent:
          type: boolean
          title: Is Parent
        search_keywords:
          items:
            type: string
          type: array
          title: Search Keywords
        has_similarity_anchor:
          type: boolean
          title: Has Similarity Anchor
          default: false
        source:
          type: string
          title: Source
        sync_hash:
          anyOf:
            - type: string
            - type: 'null'
          title: Sync Hash
        last_synced_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Last Synced At
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - id
        - tenant_id
        - site_id
        - external_id
        - title
        - description
        - short_description
        - sku
        - gtin
        - brand
        - category
        - attributes
        - properties
        - price_current
        - price_msrp
        - price_special
        - price_on_request
        - currency
        - image_url
        - additional_images
        - product_url
        - availability
        - rating_average
        - rating_count
        - language
        - translation_group_id
        - parent_product_id
        - is_variant
        - is_parent
        - source
        - sync_hash
        - last_synced_at
        - created_at
        - updated_at
      title: ProductResponse
      description: Product data returned in API responses.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        API-Token aus dem Big-Panda-Admin-UI unter Einstellungen → API-Keys.
        Header: `Authorization: Bearer <token>`.

````