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

# Get Tag

> Returns a conversation tag



## OpenAPI

````yaml GET /conversation/tags/{id}
openapi: 3.1.0
info:
  title: Pingmee API
  description: A complete guide to Pingmee micro service architecture.
  version: 1.0.0
servers:
  - url: https://api.pingmee.co.il
security:
  - cookieAuth: []
    ApiKeyAuth: []
paths:
  /conversation/tags/{id}:
    get:
      description: Returns a conversation tag
      parameters:
        - name: id
          in: path
          description: ID of conversation tag to get
          required: true
          schema:
            type: string
            format: string
      responses:
        '200':
          description: Conversation Tag
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversationTag'
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Conversation tag not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ConversationTag:
      type: object
      required:
        - id
        - title
        - color
        - associatedTo
      properties:
        id:
          type: string
          description: Unique identifier of the tag
        title:
          type: string
          description: Human-readable tag title
        color:
          type: string
          description: Tag color (hex, rgb, or named color)
        associatedTo:
          type: string
          description: Business or account the tag is associated with
      additionalProperties: false
    Error:
      required:
        - error
        - message
      type: object
      properties:
        error:
          type: string
        message:
          type: string
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: header
      name: Cookie
      description: Personal access token from Pingmee Settings → Developer Tools
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Business API key from Pingmee Settings → Developer Tools

````