Recordings

List recordings

Every recording, newest first — from calendar meetings, manual joins and uploads alike. A run superseded by a rescheduled meeting is left out, so one meeting never appears twice.

gethttps://api-notetaker.nabrah.ai/ext/v1/recordings

Query parameters

limitintegerDefault: 25
offsetintegerDefault: 0

Request

cURL
curl -X GET https://api-notetaker.nabrah.ai/ext/v1/recordings \
  -H "Authorization: Bearer $NABRAH_API_KEY"

Responses

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