---
title: "Get Eval"
method: GET
path: "/v1/evals/{eval_id}"
tags: ["evals"]
---

# Get Eval

`GET /v1/evals/{eval_id}`

Get a specific evaluation by ID.

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/eval_123"       -H "Authorization: Bearer your-key"
```

Returns: Eval object

## Path parameters

- `eval_id` string, required

## Query parameters

- `custom_llm_provider` string, nullable

## Response `200`

Successful Response

- Eval — Represents an evaluation from the OpenAI Evals API
  - `created_at` integer, required
  - `data_source_config` object, required
  - `id` string, required
  - `metadata` object, nullable
  - `name` string, nullable
  - `object` string
  - `testing_criteria` object[], required
  - `updated_at` integer, nullable

## Other responses

- `422` — Validation Error

---

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