> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tape.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Stats

> A snapshot of the gateway's storage and serving state.

Returns a snapshot of what the gateway knows and how it's doing: counts of tracks and slices, disk usage per volume, chain ingestion progress, and request counters. Useful for dashboards and quick inspection.

Like [health](/apis/gateway/status/health), this endpoint serves during bootstrap, so you can watch a fresh gateway catch up.

## Example

```bash theme={null}
curl -s "$TAPE_GATEWAY/v1/stats"
```

```json Response (trimmed) theme={null}
{
  "last_processed_slot": 18240010,
  "current_epoch": 17,
  "tracks_stored": 48211,
  "slices_stored": 51204,
  "slice_payload_bytes": 91238476512,
  "disk_volumes": [
    { "name": "primary", "store_disk_bytes": 91238476512, "free_disk_bytes": 812093841920 }
  ],
  "ingest_state": "live",
  "ingest_lag_slots": 2,
  "bootstrap_done": true
}
```

The full response carries more counters (bytes uploaded and downloaded, request totals, bootstrap phase and progress). Field names follow the shape above.
