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

# List persona tag values

> Distinct, active tag values used on this organization's personas, so callers can discover
the valid values for the `tag=` filter on `GET /v1/personas`. `color` is not exposed via the
public API (always null).




## OpenAPI

````yaml /api-reference/v1/personas-v1.yaml get /personas/tags
openapi: 3.0.3
info:
  title: Coval Personas API
  version: 1.0.0
  description: |
    Manage simulated personas used in voice and text evaluations.
  contact:
    name: Coval API Support
    url: https://coval.dev
    email: support@coval.dev
servers:
  - url: https://api.coval.dev/v1
    description: Production server
security:
  - ApiKeyAuth: []
tags:
  - name: Personas
    description: Persona CRUD operations
paths:
  /personas/tags:
    get:
      tags:
        - Personas
      summary: List persona tag values
      description: >
        Distinct, active tag values used on this organization's personas, so
        callers can discover

        the valid values for the `tag=` filter on `GET /v1/personas`. `color` is
        not exposed via the

        public API (always null).
      operationId: listPersonaTags
      responses:
        '200':
          description: The distinct tag values
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListPersonaTagsResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          description: Permission denied
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          $ref: '#/components/responses/InternalError'
        '503':
          description: Service temporarily unavailable
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    ListPersonaTagsResponse:
      type: object
      required:
        - tags
      properties:
        tags:
          type: array
          items:
            $ref: '#/components/schemas/PersonaTagResource'
    Error:
      type: object
      required:
        - error
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
              description: Error code
              example: INVALID_ARGUMENT
            message:
              type: string
              description: Human-readable error message
              example: Invalid voice_name 'invalid'
    PersonaTagResource:
      type: object
      required:
        - tag
      properties:
        tag:
          type: string
          description: The tag value.
        color:
          type: string
          nullable: true
          description: Always null on the public API (tag colors are UI-only).
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: UNAUTHENTICATED
              message: Missing or invalid API key
    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error:
              code: INTERNAL
              message: An unexpected error occurred
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key for authentication

````