> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ariacompute.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Evaluation

> Fetch a single evaluation run, including per-benchmark metrics and risk assessment.

Retrieve the full details of a specific evaluation run, including its current status, risk level, and any collected benchmark metrics.

## Endpoint

**GET** `/v1/evaluations/{id}`

Authentication: `Authorization: Bearer $ARIA_PIN_KEY`

## Path parameters

<ParamField path="id" type="string" required>
  The evaluation ID to retrieve.
</ParamField>

## Response

<ResponseField name="eval_id" type="string">
  Unique identifier for the evaluation run.
</ResponseField>

<ResponseField name="status" type="string">
  Current evaluation status.
</ResponseField>

<ResponseField name="risk" type="string">
  Risk summary (for example, `ok`).
</ResponseField>

<ResponseField name="error" type="string">
  Error message if the run failed, otherwise an empty string.
</ResponseField>

<ResponseField name="metrics" type="object">
  Benchmark metrics JSON object. Shape depends on the dataset and benchmarks used.

  <Expandable>
    <ResponseField name="score" type="number">
      Overall or per-benchmark score.
    </ResponseField>

    <ResponseField name="details" type="object">
      Additional benchmark-specific details.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```bash theme={null}
curl http://<pin-host>:8001/v1/evaluations/ev_1712345678901234567 \
  -H "Authorization: Bearer $ARIA_PIN_KEY"
```

```json theme={null}
{
  "eval_id": "ev_1712345678901234567",
  "status": "succeeded",
  "risk": "ok",
  "error": "",
  "metrics": {
    "score": 0.87,
    "details": {}
  }
}
```


## Related topics

- [List Evaluations](/api-reference/pin/evaluations/list.md)
- [Create Evaluation](/api-reference/pin/evaluations/create.md)
- [Aria Compute PIN API: Post-Training & Evaluation](/api-reference/pin/introduction.md)
- [Get an Agent](/api-reference/pin/agents/get.md)
- [Get Subagent](/api-reference/agent/subagents/get.md)
