Sazabi

Limits

The rate limits and quotas Sazabi enforces, what happens when you hit one, and where to find the current values.

Sazabi enforces limits to keep the platform stable and fair. This page lists the limits that are in effect today, what each one is scoped to, and how the platform behaves when you reach one. It does not publish the numeric thresholds — those change and are surfaced in the product; see Where to find the current values.

How limits work

Each limit has:

  • A scope — the identity it counts against: an organization, a project, a secret key, a session, a phone number, or an IP address.
  • A kind — how it counts: a rate (requests within a time window), a concurrency cap (how many can be in flight at once), or a maximum (a fixed ceiling on a single request).
  • A behavior when exceeded — most request limits return an error and you retry after a short wait; some non-critical paths degrade gracefully instead.

The API signals a rate limit with HTTP 429 and the error code TOO_MANY_REQUESTS. Back off and retry.

Limits in effect

Agent runs

LimitScopeKind
In-flight agent runsProjectConcurrency
New agent run startsProjectRate

If a project is at its concurrent-run cap, new runs wait rather than fail.

API

LimitScopeKind
Weighted requests per organizationOrganizationRate
Weighted requests per secret keySecret keyRate
Session-authenticated requestsSessionRate

API requests are weighted — an expensive operation counts for more than a cheap one — and counted per organization and per key. Exceeding either returns 429.

Sandboxes

LimitScopeKind
Live sandboxesOrganizationConcurrency

Organization and account safety

LimitScopeKind
Emails per bulk-invite requestOrganizationMaximum
SMS verification per phone numberPhoneRate
SMS verification per IP addressIPRate
Slack channel-picker requestsWorkspace userRate

These protect signup, verification, and invite flows from abuse.

Overrides

Some limits can be raised for a specific organization or project. If a limit is blocking a legitimate workload, contact support with your organization and the limit you are hitting.

Where to find the current values

The numeric thresholds are not published here because they can change. To see what applies to you:

Further reading