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

# Circuit Breaker Status

> Get the status of all circuit breakers.

Get the status of all circuit breakers.

### Response

`object`

<ResponseField name="circuits" type="object" required>
  Per-circuit breaker state and counters
</ResponseField>

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

### Status codes

| Code  | Meaning                 |
| ----- | ----------------------- |
| `200` | Successful response     |
| `401` | Authentication required |
| `422` | Validation error        |
| `429` | Rate limit exceeded     |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'http://localhost:8000/circuits' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "circuits": {},
    "timestamp": "2026-08-31T14:22:05Z"
  }
  ```
</ResponseExample>
