> ## 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.

# List distinct product tags

> Returns the sorted, distinct set of tags used across products in the requested
organizations. Tags are returned lowercase and trimmed. Powers tag-suggestion
UIs in the dashboard and the product-list tag filter.

Org scope resolves like every list endpoint (ADR 0029): with no `organizationIds`, the
caller's own organization is used by default (admins reach all orgs via `allOrganizations`).
A non-admin requesting tags for an organization they cannot read receives 403.




## OpenAPI

````yaml https://api.galtea.ai/openapi.json get /products/tags
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/tags:
    get:
      tags:
        - products
      summary: List distinct product tags
      description: >
        Returns the sorted, distinct set of tags used across products in the
        requested

        organizations. Tags are returned lowercase and trimmed. Powers
        tag-suggestion

        UIs in the dashboard and the product-list tag filter.


        Org scope resolves like every list endpoint (ADR 0029): with no
        `organizationIds`, the

        caller's own organization is used by default (admins reach all orgs via
        `allOrganizations`).

        A non-admin requesting tags for an organization they cannot read
        receives 403.
      operationId: listProductTags
      parameters:
        - name: organizationIds
          in: query
          style: form
          explode: true
          description: >-
            Filter by organization IDs. Optional — defaults to the caller's own
            organization.
          required: false
          schema:
            type: array
            items:
              type: string
      responses:
        '200':
          description: Tags retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
                example:
                  - beta
                  - internal
        '400':
          description: Missing tenant-scoping filter
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: No permission to view tags for the requested organizations
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - bearerAuth: []
components:
  schemas:
    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-...`.

````