# Dashboard

Canonical HTML: https://anchorshell.com/docs/dashboard

Check Relay setup, current activity, model health, and usage at a glance.

Last updated: 2026-09-17

The Dashboard brings setup readiness, current request activity, and model health together. Use it to find the next action, with detailed history available in Usage and Logs.

## Dashboard

1. Open **Dashboard**.
2. Check setup progress and follow any unfinished setup step.
3. Review request activity, model health, and usage.
4. Open the related page when a model or limit needs attention.

An empty history is normal before your first request. Use **Setup** to connect a provider, then send a request in **Playground**.

## API

Use an appropriately scoped [API key](https://anchorshell.com/docs/api) for these requests.

### Read the request summary

```bash
curl 'https://api.anchorshell.com/api/relay/stats/summary' \
  -H 'Authorization: Bearer <API_KEY>'
```

**Response — 200 OK**

Selected response fields shown; IDs and values are illustrative.

```json
{
  "providers": 1,
  "endpoints": 2,
  "lanes": 1,
  "requests": 12,
  "request_states": {
    "completed": 10,
    "failed": 1,
    "cancelled": 1
  }
}
```

## Next

[Realtime](https://anchorshell.com/docs/realtime).
