> ## 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 run tag suggestions

> List distinct (key, value) pairs ever set on a run for the organization, sourced from the run-tag event log rather than the tag-key/tag-value registry. Surfaces reserved 'skyvern.*' system keys (which are never registered) so pickers can offer them alongside user-defined tags.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/run-tag-suggestions
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/run-tag-suggestions:
    get:
      tags:
        - Tags
      summary: List run tag suggestions
      description: >-
        List distinct (key, value) pairs ever set on a run for the organization,
        sourced from the run-tag event log rather than the tag-key/tag-value
        registry. Surfaces reserved 'skyvern.*' system keys (which are never
        registered) so pickers can offer them alongside user-defined tags.
      operationId: get_run_tag_suggestions_v1_run_tag_suggestions_get
      parameters:
        - 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 run tag suggestions
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunTagSuggestionsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    RunTagSuggestionsResponse:
      properties:
        keys:
          items:
            type: string
          type: array
          title: Keys
          description: Distinct grouped tag keys seen on runs.
        values_by_key:
          additionalProperties:
            items:
              type: string
            type: array
          type: object
          title: Values By Key
          description: Values seen for each grouped key.
        labels:
          items:
            type: string
          type: array
          title: Labels
          description: Distinct standalone (keyless) labels seen on runs.
      type: object
      title: RunTagSuggestionsResponse
      description: >-
        Response for ``GET /v1/run-tag-suggestions``: distinct (key, value)
        pairs

        ever set on a run for the org, sourced from the event log rather than
        the

        tag-key/tag-value registry so reserved ``skyvern.*`` system keys (never

        registered) reach the pickers too.
    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

````