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

# Replay one eval and grade it against the recorded answer

> Runs the real generation path, then grades the reply against preferred_output on substance rather than wording…

Runs the real generation path, then grades the reply against preferred\_output on substance rather than wording. `passed` is null — never false — when grading could not run, so an unavailable judge is not mistaken for a failing agent.

### Path parameters

<ParamField path="id" type="string (uuid)" required>
  The eval id.
</ParamField>

### Response

Returns `object`.

### Status codes

| Code  | Meaning                                                  |
| ----- | -------------------------------------------------------- |
| `200` | The run result                                           |
| `400` | Invalid request. `issues` names the offending field(s).  |
| `401` | Missing, invalid, or expired API key.                    |
| `403` | The key lacks a required scope.                          |
| `404` | Not found, or not in the organization that owns the key. |
| `429` | Rate limit exceeded.                                     |

### Access

|                |                        |
| -------------- | ---------------------- |
| Required scope | `responses:write`      |
| Rate limit     | 30 requests per minute |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://response.stateset.com/api/v1/evals/{id}/run' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>
