# List bot runs

> Every recording this account has, newest first — the same rows as `/recordings`, under the noun that fits what you are doing with them.

`GET https://api-notetaker.nabrah.ai/ext/v1/bots`

Requires an API key in the `Authorization` header.

Every recording this account has, newest first — the same rows as `/recordings`, under the noun that fits what you are doing with them.

## Query parameters

- `limit` (integer) Default: `25`.
- `offset` (integer) Default: `0`.

## Responses

- `200` — A page of recordings.
- `401` — No key, an unknown key, or one that has been revoked or has expired.
- `403` — The key is read only, or lacks the reach for this route.
- `404` — No such record — or one that belongs to another account.
- `422` — The body or query failed validation; `details` names the field.
- `429` — Too many requests. `Retry-After` says how long to wait.

### 200 example

```json
{
  "data": {
    "rows": [
      {
        "runId": "00000000-0000-0000-0000-000000000000",
        "reference": "string",
        "meetingId": "string",
        "title": "string",
        "startsAt": "2026-01-01T09:00:00.000Z",
        "platform": "string",
        "origin": "calendar",
        "state": "string",
        "phase": "string",
        "recordingSeconds": 0,
        "endedAt": "string",
        "hasNotes": true
      }
    ],
    "total": 0,
    "limit": 0,
    "offset": 0
  }
}
```

### 401 example

```json
{
  "error": {
    "code": "string",
    "message": "string",
    "details": [
      {
        "path": "string",
        "message": "string"
      }
    ]
  }
}
```

### 403 example

```json
{
  "error": {
    "code": "string",
    "message": "string",
    "details": [
      {
        "path": "string",
        "message": "string"
      }
    ]
  }
}
```

### 404 example

```json
{
  "error": {
    "code": "string",
    "message": "string",
    "details": [
      {
        "path": "string",
        "message": "string"
      }
    ]
  }
}
```

### 422 example

```json
{
  "error": {
    "code": "string",
    "message": "string",
    "details": [
      {
        "path": "string",
        "message": "string"
      }
    ]
  }
}
```

### 429 example

```json
{
  "error": {
    "code": "string",
    "message": "string",
    "details": [
      {
        "path": "string",
        "message": "string"
      }
    ]
  }
}
```
