> ## 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 brand outcome trend

> Daily rollup of outcomes by classification.

### Path parameters

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

### Response

`object`

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

<ResponseField name="days" type="integer" required />

<ResponseField name="points" type="object[]" required>
  <Expandable title="points">
    <ResponseField name="day" type="string (date-time)" required />

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

    <ResponseField name="count" type="integer" required />

    <ResponseField name="value_minor" type="integer" required />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                     |
| ----- | ------------------------------------------- |
| `200` | Daily rollup of outcomes by classification. |
| `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}/outcomes/trend' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "brand_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "days": 1,
    "points": [
      {
        "day": "2026-08-31T14:22:05Z",
        "classification": "string",
        "count": 2,
        "value_minor": 4900
      }
    ]
  }
  ```
</ResponseExample>
