> ## 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.

# Get one eval

> The eval.

### Path parameters

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

### Response

`object`

<ResponseField name="object" type="string" required />

<ResponseField name="id" type="string (uuid)" required />

<ResponseField name="name" type="string,null" required>
  From the stored `eval_name`.
</ResponseField>

<ResponseField name="type" type="string,null" required>
  Defaults to `preference` on create.
</ResponseField>

<ResponseField name="status" type="string,null" required>
  Defaults to `pending` on create.
</ResponseField>

<ResponseField name="description" type="string,null" required />

<ResponseField name="user_message" type="string,null" required>
  The customer message to replay. Copied from the source response when `response_id` was supplied.
</ResponseField>

<ResponseField name="preferred_output" type="string,null" required>
  The reply the agent should have given.
</ResponseField>

<ResponseField name="non_preferred_output" type="string,null" required>
  The reply that was actually given. Copied from the source response when `response_id` was supplied.
</ResponseField>

<ResponseField name="reason_type" type="string,null" required />

<ResponseField name="customer_impact" type="string,null" required />

<ResponseField name="response_id" type="string,null (uuid)" required />

<ResponseField name="agent_id" type="string,null (uuid)" required />

<ResponseField name="ticket_id" type="string,null" required>
  Stored as a string; derived from the source response when not supplied.
</ResponseField>

<ResponseField name="created_at" type="string,null (date-time)" required />

<ResponseField name="updated_at" type="string,null (date-time)" required />

### Status codes

| Code  | Meaning                                                  |
| ----- | -------------------------------------------------------- |
| `200` | The eval.                                                |
| `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:read`        |
| Rate limit     | 120 requests per minute |

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "object": "eval",
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "name": "Two-Person Tent",
    "type": "standard",
    "status": "pending",
    "description": "Two-person tent, green — replacement for damaged pole set.",
    "user_message": "string",
    "preferred_output": "string",
    "non_preferred_output": "string",
    "reason_type": "string",
    "customer_impact": "string",
    "response_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "agent_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "ticket_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "created_at": "2026-08-31T14:22:05Z",
    "updated_at": "2026-08-31T14:22:05Z"
  }
  ```
</ResponseExample>
