Nubo applies per-user rate limits to prevent runaway scripts from swamping the API. Normal dashboard use never hits them. Scripted clients should just handleDocumentation Index
Fetch the complete documentation index at: https://docs.withnubo.com/llms.txt
Use this file to discover all available pages before exploring further.
429 gracefully.
What’s limited
Write calls (create, update, delete, rollback) are limited. Read calls (GET) are not. You can poll your deployments or your Frame status as often as you like.
Limits are per-user, counted over a 60-second window. Writes are limited conservatively; the exact thresholds are tuned over time based on usage patterns and aren’t part of our stability contract.
If you hit the limit
You’ll get back:Handling rate limits in your client
A well-behaved client:- Backs off on
429with a short exponential delay (e.g. 2s, 4s, 8s, capped at 60s). - Shares one token across one client, not per-request - running many workers behind the same token multiplies your write rate.
- Logs the
internal_codeso rate-limit rejections are easy to tell apart from other failures.
