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

# Get Run Gold Label

> Get a specific gold label for a run

Retrieve a specific gold label for a run by its ID. The gold label contains either a text value or an object value representing the expected output.


## OpenAPI

````yaml GET /v1/run/{run_id}/gold-label/{gold_label_id}
openapi: 3.1.0
info:
  title: re-factor API Reference
  version: 1.0.0
  description: API specification for re-factor system based on schema definitions
servers: []
security:
  - BearerAuth: []
paths:
  /v1/run/{run_id}/gold-label/{gold_label_id}:
    parameters:
      - name: run_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The ID of the run
      - name: gold_label_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The ID of the gold label
    get:
      summary: Get run gold label
      description: Get a specific gold label for a run
      responses:
        '200':
          description: The gold label
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RunGoldLabel'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          $ref: '#/components/responses/NotFoundError'
components:
  schemas:
    RunGoldLabel:
      type: object
      required:
        - id
        - account_id
        - run_id
        - output_resource_name
        - created_at
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the gold label
        account_id:
          type: string
          description: ID of the account that owns this gold label
        run_id:
          type: string
          format: uuid
          description: ID of the run this gold label belongs to
        output_resource_name:
          type: string
          description: Name of the output resource this gold label is for
        text_value:
          type: string
          nullable: true
          description: Text value for the gold label
        object_value:
          type: object
          nullable: true
          additionalProperties: true
          description: Object value for the gold label
        object_value_is_partial:
          type: boolean
          nullable: true
          description: Whether the object value is a partial gold label
        created_by:
          type: string
          nullable: true
          description: ID of the user who created the gold label
        created_at:
          type: string
          format: date-time
          description: When the gold label was created
        updated_by:
          type: string
          nullable: true
          description: ID of the user who last updated the gold label
        updated_at:
          type: string
          format: date-time
          description: When the gold label was last updated
  responses:
    UnauthorizedError:
      description: Unauthorized
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
    NotFoundError:
      description: Not Found
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````