---
title: "List Evals"
method: GET
path: "/v1/evals"
tags: ["OpenAI Evals API"]
---

# List Evals

`GET /v1/evals`

List evaluations 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`
- Pass model via body: `{"model": "gpt-4-account-1"}`

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

Returns: ListEvalsResponse with list of evaluations

## Query parameters

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

## Response `200`

Successful Response

- ListEvalsResponse — Response from listing evaluations
  - `object` string
  - `data` Eval[], required
    - `id` string, required
    - `object` string
    - `created_at` integer, required
    - `updated_at` integer, nullable
    - `name` string, nullable
    - `data_source_config` object, required
    - `testing_criteria` object[], required
    - `metadata` 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/79928a3d37d3/schema)
