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

# Get products

> Get list of products with pagination and filtering options. See [Products](https://docs.galtea.ai/concepts/product).



## OpenAPI

````yaml https://api.galtea.ai/openapi.json get /products
openapi: 3.0.0
info:
  version: 1.0.0
  title: Product Management Service API
  description: API documentation for Product Management Service
  contact:
    name: Galtea AI
servers:
  - url: https://api.galtea.ai
security:
  - bearerAuth: []
tags: []
externalDocs:
  description: Galtea Platform Documentation
  url: https://docs.galtea.ai
paths:
  /products:
    get:
      tags:
        - products
      summary: Get products
      description: >-
        Get list of products with pagination and filtering options. See
        [Products](https://docs.galtea.ai/concepts/product).
      operationId: getProducts
      parameters:
        - name: ids
          in: query
          style: form
          explode: true
          description: Filter by product IDs
          required: false
          schema:
            type: array
            items:
              type: string
        - name: organizationIds
          in: query
          style: form
          explode: true
          description: Filter by organization IDs
          required: false
          schema:
            type: array
            items:
              type: string
        - name: names
          in: query
          style: form
          explode: true
          description: Filter by product names (exact match, multiple)
          required: false
          schema:
            type: array
            items:
              type: string
        - name: name
          in: query
          description: Filter by product name (partial match)
          required: false
          schema:
            type: string
        - name: tags
          in: query
          style: form
          explode: true
          description: Filter by tags (returns products with at least one matching tag)
          required: false
          schema:
            type: array
            items:
              type: string
        - name: cloned
          in: query
          description: >-
            Filter by product origin: `true` returns demo/cloned products
            (source is not null), `false` returns user-created products (source
            is null). Combine with limit=0 to read only the matching count from
            the Content-Range header.
          required: false
          schema:
            type: boolean
        - name: fromCreatedAt
          in: query
          description: Filter products created at or after this timestamp (ISO 8601 format)
          required: false
          schema:
            type: string
            format: date-time
        - name: toCreatedAt
          in: query
          description: >-
            Filter products created at or before this timestamp (ISO 8601
            format)
          required: false
          schema:
            type: string
            format: date-time
        - name: sort
          in: query
          style: form
          explode: true
          description: Sort parameters
          required: false
          schema:
            type: array
            items:
              type: string
        - name: limit
          in: query
          description: Maximum number of results to return
          required: false
          schema:
            type: integer
        - name: offset
          in: query
          description: Number of results to skip
          required: false
          schema:
            type: integer
      responses:
        '200':
          description: Products retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Product'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    Product:
      type: object
      properties:
        id:
          type: string
          example: prod_123
        organizationId:
          type: string
          example: org_123
        userId:
          type: string
          nullable: true
          example: user_123
        name:
          type: string
          example: Sample Product
        description:
          type: string
          example: Sample product description
        riskLevel:
          type: string
          enum:
            - PROHIBITED
            - GPAI
            - GPAI_SYSTEMIC
            - HIGH
            - SPECIAL_SYSTEM
          nullable: true
          description: >-
            EU AI Act risk classification. PROHIBITED: banned AI use cases.
            GPAI: general-purpose AI. GPAI_SYSTEMIC: GPAI with systemic risk.
            HIGH: high-risk AI system. SPECIAL_SYSTEM: special-category system.
          example: HIGH
        operatorType:
          type: string
          enum:
            - AUTHORISED_REPRESENTATIVE
            - DEPLOYER
            - DISTRIBUTER
            - IMPORTER
            - PRODUCT_MANUFACTURER
            - PROVIDER
          nullable: true
          description: EU AI Act operator role classification.
          example: PROVIDER
        securityBoundaries:
          type: string
          nullable: true
          example: Internal use only
        capabilities:
          type: string
          nullable: true
          example: Can process and analyze data
        inabilities:
          type: string
          nullable: true
          example: Cannot process sensitive financial data
        policies:
          type: string
          nullable: true
          example: Must comply with data protection regulations
        tags:
          type: array
          items:
            type: string
          example:
            - internal
            - beta
          description: >-
            Free-form labels for organizing products. Normalized to lowercase
            and trimmed on save.
        source:
          type: string
          nullable: true
          readOnly: true
          description: >-
            Demo key the product was cloned from (e.g. "banking"); null for
            user-created products. Server-stamped on demo-clone; not
            client-writable.
          example: banking
        createdAt:
          type: string
          format: date-time
        deletedAt:
          type: string
          format: date-time
          nullable: true
    Error:
      type: object
      properties:
        error:
          type: string
          example: Error type
        message:
          type: string
          example: Error message description
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        API key authorization. Pass your API key in the Authorization header as
        a Bearer token. Both new (`gsk_*`) and legacy (`gsk-`) API keys are
        accepted, e.g. `Authorization: Bearer gsk_...` or `Authorization: Bearer
        gsk-...`.

````