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

# List tag values

> List the palette color and current workflow usage count for each grouped tag (key, value) for the organization. The frontend joins these onto tags by (key, value); workflow_count is the number of non-deleted workflows carrying the label and powers the per-label usage and delete blast-radius warnings.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/tag-values
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/tag-values:
    get:
      tags:
        - Tags
      summary: List tag values
      description: >-
        List the palette color and current workflow usage count for each grouped
        tag (key, value) for the organization. The frontend joins these onto
        tags by (key, value); workflow_count is the number of non-deleted
        workflows carrying the label and powers the per-label usage and delete
        blast-radius warnings.
      operationId: list_tag_values_v1_tag_values_get
      parameters:
        - name: key
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter to values for a single tag key
            title: Key
          description: Filter to values for a single tag key
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      responses:
        '200':
          description: Successfully retrieved tag values
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TagValue'
                title: Response List Tag Values V1 Tag Values Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TagValue:
      properties:
        key:
          type: string
          title: Key
        value:
          type: string
          title: Value
        color:
          type: string
          title: Color
        workflow_count:
          type: integer
          title: Workflow Count
          description: >-
            Number of non-deleted workflows currently carrying this (key, value)
            label.
          default: 0
      type: object
      required:
        - key
        - value
        - color
      title: TagValue
      description: |-
        Tag-value color registry entry: the palette color assigned to a grouped
        (key, value) pair.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````