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

# Get an execution tag

> Retrieves a single execution tag by its id.



## OpenAPI

````yaml https://api.mentionlab.io/api/docs-json get /api/v1/execution-tags/{id}
openapi: 3.0.0
info:
  title: MentionLab Public API v0.3.4-rc
  description: ''
  version: 0.3.4-rc
  contact: {}
servers:
  - url: https://api.mentionlab.io
security: []
tags: []
paths:
  /api/v1/execution-tags/{id}:
    get:
      tags:
        - Execution Tags
      summary: Get an execution tag
      description: Retrieves a single execution tag by its id.
      operationId: ExecutionTagsV1Controller_getOne_v1
      parameters:
        - name: id
          required: true
          in: path
          description: UUID of the execution tag to retrieve.
          schema:
            type: string
        - name: x-project-id
          in: header
          description: Project ID to specify the project context
          required: true
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagJobExecutionNewResponse'
        '400':
          description: >-
            The request failed validation — the body, query or path parameters
            are malformed or out of range.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '401':
          description: The request is missing valid authentication credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
        '403':
          description: >-
            The authenticated principal lacks the required permission, or access
            to the requested organisation/project.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorResponse'
components:
  schemas:
    TagJobExecutionNewResponse:
      type: object
      properties:
        id:
          type: string
          example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
          description: Unique identifier for the tag
        project:
          type: object
          description: The project this tag belongs to
          example: a1b2c3d4-e5f6-g7h8-i9j0-k1l2m3n4o5p6
        name:
          type: string
          description: Name of the tag
          example: important
        color:
          type: string
          description: Color of the tag in hex format
          example: '#3B82F6'
        matchingMode:
          type: string
          example: exact
          description: >-
            How the tag is matched to responses: `exact` links only responses
            whose text contains the tag name, `semantic` also links responses by
            meaning.
          enum:
            - exact
            - semantic
        groupId:
          type: string
          description: >-
            ID of the tag group node this tag is filed under; null when
            ungrouped.
          format: uuid
          nullable: true
      required:
        - id
        - project
        - name
        - color
        - matchingMode
    ApiErrorResponse:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code of the error.
          example: 400
        message:
          type: string
          description: >-
            Human-readable description of the error. Validation failures return
            an array of per-field validation errors instead of a single string.
          example: Validation failed
        error:
          type: string
          description: Short name of the HTTP error.
          example: Bad Request
      required:
        - statusCode

````