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

# Tenant-agnostic platform outcome benchmarks with BPO comparison

> Public outcome benchmarks for Strategy §8.6. No auth required — the response is platform-wide, tenant-agnostic, and k-anonymized at the SKU level (SKUs below…

Public outcome benchmarks for Strategy §8.6.

No auth required — the response is platform-wide, tenant-agnostic,
and k-anonymized at the SKU level (SKUs below
PUBLIC\_BENCHMARK\_MIN\_OUTCOMES\_PER\_SKU are omitted).

Cached for 5 minutes so a public-facing marketing page can call this
on every render without thrashing the DB.

### Response

`PublicBenchmarksResponse`

<ResponseField name="as_of" type="string (date-time)" required />

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

<ResponseField name="platform" type="PublicPlatformStats" required>
  <Expandable title="PublicPlatformStats">
    <ResponseField name="total_outcomes" type="integer" required />

    <ResponseField name="avg_outcome_usd" type="string" required />
  </Expandable>
</ResponseField>

<ResponseField name="by_sku" type="PublicSkuBenchmark[]" required>
  <Expandable title="PublicSkuBenchmark">
    <ResponseField name="type" type="string" required />

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

    <ResponseField name="vs_bpo_avg_usd" type="string,null" />

    <ResponseField name="savings_pct" type="number,null" />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning             |
| ----- | ------------------- |
| `200` | Successful Response |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.computer.stateset.app/api/v1/system/benchmarks' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "as_of": "2026-08-31T14:22:05Z",
    "window_days": 1,
    "platform": {
      "total_outcomes": 1,
      "avg_outcome_usd": "string"
    },
    "by_sku": [
      {
        "type": "resolved_contact",
        "avg_usd": "string",
        "vs_bpo_avg_usd": "string",
        "savings_pct": 1.5
      }
    ]
  }
  ```
</ResponseExample>
