Limits and quota

Two different things can stop a call: a hard limit on shape and size, or a quota that runs out and refills.

Hard limits

WhatLimitNotes
Recording size1 GBA larger file is accepted by storage and then refused, leaving the meeting at audio_rejected.
Meetings per page50The limit parameter takes 1 to 50 and defaults to 25.
Member records250Everything that is not deleted counts, including members without an account. Integrations do not.
Vocabulary terms100Adding past the limit is refused with 409 VOCABULARY_FULL.
Keys per integration2Enough to rotate without a gap. Expired keys stop counting.
External id128 charactersUnique within the organisation, and free once the meeting it belonged to is deleted.

Quota

Transcription and minutes are metered. When the organisation's quota for the period is spent, the call that would consume it answers 402 with details.next_reset_at: the moment the quota replenishes. Nothing is queued, so retrying before that time gets the same answer.

Read what is left before you start a batch rather than discovering it halfway through.

curl -X GET 'https://api.notulai.nl/v1/usage' \
  -H 'Authorization: Bearer nla_live_...'

Changing a meeting can cost a credit

The title, the date and the project are stored on every fragment of a meeting that has been indexed for search, so changing one of them re-indexes the meeting and that costs a single credit. It is free until the minutes have been indexed, and free for a change that only moves the start time. Worth knowing before you sync a few thousand titles from another system: read credits_remaining first.

Rate

Requests are throttled at the edge. Going over answers 429, and that response comes from the edge rather than from the API, so it is the one refusal that does not carry the error envelope. Back off and retry with a widening interval; do not treat it as a failure of the call.

Running out mid-recording is a dead end

If the quota goes while a recording is already being handled, the meeting stops at transcribe_blocked. Topping up does not resume it. Create the meeting again and upload once there is quota. See from audio to minutes.