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

# Get evaluation



## OpenAPI

````yaml /api-reference/openapi.json get /v1/evals/{eval_id}
openapi: 3.1.0
info:
  title: Veri API
  description: >-
    REST API for the Veri RL post-training platform. All requests require a
    Bearer API key (`vk_` prefix).
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.veri.studio
    description: Production
security: []
tags:
  - name: Training jobs
    description: Create, monitor, and manage training jobs.
  - name: Datasets
    description: Upload and connect training datasets.
  - name: Reward functions
    description: Upload and manage reward functions.
  - name: Deployments
    description: Serve trained models and run inference.
  - name: Evaluations
    description: Score models against datasets and benchmarks.
  - name: Volumes
    description: Persistent file storage mounted into jobs.
  - name: Models
    description: Custom model registry deployments serve from.
  - name: Regions
    description: Discover available launch regions.
  - name: GPU
    description: Live GPU availability by provider and region.
  - name: Code artifacts
    description: Upload custom training script bundles.
  - name: Billing
    description: Credit balance and transaction history.
  - name: API keys
    description: Create and revoke API keys.
  - name: Account
    description: The authenticated caller's identity.
  - name: SSH keys
    description: Manage SSH key pairs for compute access.
  - name: Settings
    description: Account-level integrations (Weights & Biases).
paths:
  /v1/evals/{eval_id}:
    get:
      tags:
        - Evaluations
      summary: Get evaluation
      operationId: get
      parameters:
        - name: eval_id
          in: path
          description: Evaluation ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: The evaluation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvalResponse'
        '404':
          description: Not found or not owned by the caller
      security:
        - bearerAuth: []
components:
  schemas:
    EvalResponse:
      type: object
      required:
        - object
        - id
        - name
        - scorers
        - created_at
      properties:
        object:
          type: string
        id:
          type: string
        name:
          type: string
        dataset_id:
          type:
            - string
            - 'null'
        scorers:
          type: array
          items:
            $ref: '#/components/schemas/ScorerConfig'
        generation_params:
          oneOf:
            - type: 'null'
            - $ref: '#/components/schemas/GenerationParams'
        created_at:
          type: string
          format: date-time
    ScorerConfig:
      oneOf:
        - allOf:
            - $ref: '#/components/schemas/ExactMatchScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - exact_match
        - allOf:
            - $ref: '#/components/schemas/ContainsScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - contains
        - allOf:
            - $ref: '#/components/schemas/RewardFunctionScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - reward_function
        - allOf:
            - $ref: '#/components/schemas/LlmJudgeScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - llm_judge
        - allOf:
            - $ref: '#/components/schemas/PythonScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - python
        - allOf:
            - $ref: '#/components/schemas/BenchmarkScorerConfig'
            - type: object
              required:
                - type
              properties:
                type:
                  type: string
                  enum:
                    - benchmark
    GenerationParams:
      type: object
      properties:
        max_tokens:
          type: integer
          format: int32
        temperature:
          type: number
          format: double
        top_p:
          type: number
          format: double
        stop:
          type:
            - array
            - 'null'
          items:
            type: string
        seed:
          type:
            - integer
            - 'null'
          format: int64
    ExactMatchScorerConfig:
      type: object
      required:
        - name
      properties:
        name:
          type: string
        reference_field:
          type: string
        case_sensitive:
          type: boolean
    ContainsScorerConfig:
      type: object
      required:
        - name
      properties:
        name:
          type: string
        reference_field:
          type: string
        regex:
          type: boolean
    RewardFunctionScorerConfig:
      type: object
      required:
        - name
        - reward_function_id
      properties:
        name:
          type: string
        reward_function_id:
          type: string
    LlmJudgeScorerConfig:
      type: object
      required:
        - name
        - judge_prompt
      properties:
        name:
          type: string
        judge_prompt:
          type: string
        judge_model:
          type:
            - string
            - 'null'
        judge_temperature:
          type: number
          format: double
        rubric:
          type:
            - string
            - 'null'
        dimensions:
          type: array
          items:
            type: string
        min_score:
          type:
            - number
            - 'null'
          format: double
        max_score:
          type:
            - number
            - 'null'
          format: double
        pass_threshold:
          type:
            - number
            - 'null'
          format: double
        calibration_id:
          type:
            - string
            - 'null'
    PythonScorerConfig:
      type: object
      required:
        - name
        - source_code
      properties:
        name:
          type: string
        source_code:
          type: string
    BenchmarkScorerConfig:
      type: object
      required:
        - name
        - task
      properties:
        name:
          type: string
        task:
          type: string
        sample_limit:
          type:
            - integer
            - 'null'
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````