Meetings

List meetings on the calendar

Meetings as they appear on the connected calendar, whether or not the notetaker will join them. Omitting from and to returns everything held. Meetings the owner has removed from Nabrah are never listed.

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

Query parameters

fromstring · date-time
tostring · date-time
limitintegerDefault: 200

Request

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

Responses

200A page of meetings.
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": [
      {
        "id": "00000000-0000-0000-0000-000000000000",
        "title": "string",
        "link": "string",
        "description": "string",
        "location": "string",
        "startsAt": "2026-01-01T09:00:00.000Z",
        "durationMinutes": 0,
        "source": "manual",
        "isAllDay": true,
        "isRecurring": true,
        "attendees": [
          null
        ],
        "attendeeCount": 0,
        "organizer": {},
        "responseStatus": "string",
        "externalUrl": "string",
        "recordOverride": true,
        "createdAt": "2026-01-01T09:00:00.000Z"
      }
    ],
    "total": 0,
    "limit": 0,
    "offset": 0
  }
}