---
title: "List Runs"
method: GET
path: "/v1/evals/{eval_id}/runs"
tags: ["OpenAI Evals API - Runs"]
---

# List Runs

`GET /v1/evals/{eval_id}/runs`

List all runs for an evaluation with pagination.

Model-based routing (for multi-account support):
- Pass model via header: `x-litellm-model: gpt-4-account-1`
- Pass model via query: `?model=gpt-4-account-1`

Example usage:
```bash
curl "http://localhost:4000/v1/evals/eval_123/runs?limit=10"       -H "Authorization: Bearer your-key"
```

Returns: ListRunsResponse with list of runs

## Path parameters

- `eval_id` string, required

## Query parameters

- `limit` integer, nullable
- `after` string, nullable
- `before` string, nullable
- `order` string, nullable
- `custom_llm_provider` string, nullable

## Response `200`

Successful Response

- ListRunsResponse — Response from listing runs
  - `object` string
  - `data` Run[], required
    - `id` string, required
    - `object` string
    - `created_at` integer, required
    - `status` 'queued' | 'running' | 'completed' | 'failed' | 'cancelled', required
    - `data_source` object, required
    - `eval_id` string, required
    - `name` string, nullable
    - `started_at` integer, nullable
    - `completed_at` integer, nullable
    - `model` string, nullable
    - `per_model_usage` unknown
    - `per_testing_criteria_results` PerTestingCriteriaResult[], nullable
      - `testing_criteria_index` integer, required
      - `result_counts` ResultCounts, required — Result counts for a run
        - `total` integer, required
        - `passed` integer
        - `failed` integer
        - `error` integer
      - `average_score` number, nullable
    - `report_url` string, nullable
    - `result_counts` object, nullable
    - `shared_with_openai` boolean, nullable
    - `metadata` object, nullable
    - `error` object, nullable
  - `first_id` string, nullable
  - `last_id` string, nullable
  - `has_more` boolean

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/sea-lion/apis/litellm-api.md) · [All operations](https://skmtc.net/sea-lion/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sea-lion/litellm-api/revisions/1e929292ddd5/schema)
