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

# Pagination

> Limit/offset pagination for list-style endpoints.

<Info>
  **BlobRouter v0.1** · Last updated: August 2026 · Architecture version: **2.0**
</Info>

v1 list endpoints use **limit / offset** query parameters.

## Routing history

```bash theme={null}
curl "https://api.blobrouter.com/v1/analytics/routing-history?limit=10&offset=0" \
  -H "Authorization: Bearer $DASHBOARD_JWT"
```

| Param    | Default | Notes       |
| -------- | ------- | ----------- |
| `limit`  | `10`    | Max `50`    |
| `offset` | `0`     | Max `10000` |

Response includes `items`, `total`, `limit`, `offset`.

## Other lists

Scan history returns a fixed recent window (not cursor-based). Upload/file APIs are keyed by `fileId` — no listing API in v1.

Cursor / page-token pagination is not implemented yet.
