> ## 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 training metrics



## OpenAPI

````yaml /api-reference/openapi.json get /v1/training_jobs/{job_id}/metrics
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/training_jobs/{job_id}/metrics:
    get:
      tags:
        - Training jobs
      summary: Get training metrics
      operationId: metrics
      parameters:
        - name: job_id
          in: path
          description: Training job ID
          required: true
          schema:
            type: string
        - name: keys
          in: query
          required: false
          schema:
            type: string
        - name: from_step
          in: query
          required: false
          schema:
            type: integer
            format: int32
        - name: to_step
          in: query
          required: false
          schema:
            type: integer
            format: int32
        - name: max_points
          in: query
          required: false
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: Sampled per-step training metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricsResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    MetricsResponse:
      type: object
      required:
        - metrics
        - available_keys
      properties:
        metrics:
          type: array
          items:
            $ref: '#/components/schemas/MetricPoint'
        available_keys:
          type: array
          items:
            type: string
        latest_step:
          type:
            - integer
            - 'null'
          format: int32
    MetricPoint:
      type: object
      required:
        - step
        - values
      properties:
        step:
          type: integer
          format: int32
        values: {}
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````