> ## 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.

# List run items



## OpenAPI

````yaml /api-reference/openapi.json get /v1/evals/{eval_id}/runs/{run_id}/items
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}/runs/{run_id}/items:
    get:
      tags:
        - Evaluations
      summary: List run items
      operationId: list_run_items
      parameters:
        - name: eval_id
          in: path
          description: Evaluation ID
          required: true
          schema:
            type: string
        - name: run_id
          in: path
          description: Evaluation run ID
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            format: int32
        - name: after
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: A paginated list of per-item scoring results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedList_EvalRunItemResponse'
        '404':
          description: Not found or not owned by the caller
      security:
        - bearerAuth: []
components:
  schemas:
    PaginatedList_EvalRunItemResponse:
      type: object
      required:
        - object
        - data
        - has_more
      properties:
        object:
          type: string
        data:
          type: array
          items:
            type: object
            required:
              - object
              - id
              - run_id
              - item_index
              - input
              - output
              - scores
              - epoch
              - attempt_index
              - created_at
            properties:
              object:
                type: string
              id:
                type: string
              run_id:
                type: string
              item_index:
                type: integer
                format: int32
              input:
                type: string
              output:
                type: string
              label:
                type:
                  - string
                  - 'null'
              scores:
                type: object
                additionalProperties:
                  type:
                    - number
                    - 'null'
                  format: double
                propertyNames:
                  type: string
              latency_ms:
                type:
                  - number
                  - 'null'
                format: double
              sample_id:
                type:
                  - string
                  - 'null'
              epoch:
                type: integer
                format: int32
              attempt_index:
                type: integer
                format: int32
              request: {}
              response: {}
              prompt_tokens:
                type:
                  - integer
                  - 'null'
                format: int32
              completion_tokens:
                type:
                  - integer
                  - 'null'
                format: int32
              finish_reason:
                type:
                  - string
                  - 'null'
              replica_id:
                type:
                  - string
                  - 'null'
              endpoint_url:
                type:
                  - string
                  - 'null'
              error_category:
                type:
                  - string
                  - 'null'
              error_message:
                type:
                  - string
                  - 'null'
              scorer_explanation: {}
              sandbox_evidence: {}
              trace_id:
                type:
                  - string
                  - 'null'
              span_id:
                type:
                  - string
                  - 'null'
              metadata: {}
              created_at:
                type: string
                format: date-time
        has_more:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````