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

# Brand eval cases

> Evaluation cases built from the brand's most recent real tickets.

### Path parameters

<ParamField path="brand_id" type="string (uuid)" required />

### Response

`object[]` — each element:

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

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

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

<ResponseField name="context" type="object" />

<ResponseField name="gold" type="string" />

### Status codes

| Code  | Meaning                                                           |
| ----- | ----------------------------------------------------------------- |
| `200` | Evaluation cases built from the brand's most recent real tickets. |
| `400` | Validation error                                                  |
| `401` | Unauthorized                                                      |
| `404` | Not found                                                         |
| `429` | Rate limited                                                      |
| `500` | Internal error                                                    |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/eval-cases' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "channel": "string",
      "message": "Two-person tent, green — replacement for damaged pole set.",
      "context": {},
      "gold": "string"
    }
  ]
  ```
</ResponseExample>
