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

# Get all tags

> Retrieve all tags configured for your organization. Use the tag IDs for updating contact tags.



## OpenAPI

````yaml /openapi.json get /api/public/tags
openapi: 3.0.0
info:
  title: Vambe AI API
  description: Vambe AI documentation
  version: '1.0'
  contact: {}
servers:
  - url: https://api.vambe.me
    description: Production Server
security: []
tags:
  - name: Vambe AI
    description: ''
paths:
  /api/public/tags:
    get:
      tags:
        - Tags
      summary: Get all tags
      description: >-
        Retrieve all tags configured for your organization. Use the tag IDs for
        updating contact tags.
      operationId: PublicTagsController_getTags
      parameters:
        - name: x-api-key
          in: header
          description: API key needed to authorize the request
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Tags retrieved successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: number
                      example: 1
                    value:
                      type: string
                      example: vip-customer
                    variant:
                      type: string
                      example: amber
                      description: Color variant for UI display
                    entity_type:
                      type: string
                      example: CONTACT
                      description: CONTACT or TICKET
                    created_at:
                      type: string
                      example: '2024-01-15T10:00:00.000Z'
                    client_id:
                      type: string
                      example: 550e8400-e29b-41d4-a716-446655440000
        '401':
          description: Unauthorized - Invalid or missing API key.

````