Limits by Tier
The Solo tier covers both the paid Solo plan and the 3-day trial. You get the same 6 RPM during the trial as you do on the paid Solo plan.
Extra RPM
If your workload consistently saturates your tier’s RPM allowance, you can purchase additional capacity as an add-on:- +$15 per 5 RPM (where offered on your plan)
429 Response
When you exceed your RPM limit, Piramyd returns a429 Too Many Requests response. Always inspect and honour the Retry-After header — it tells you the minimum number of seconds to wait before your next request will succeed.
Response headers:
429 responses and seed the first wait from Retry-After. See the Retry Strategy guide for a complete implementation example.
System One Rate Limits
The/v1/systemone endpoint (for typed-decision models such as Jev) uses the same per-tier RPM as all other inference endpoints. A System One request counts the same as a chat completion request against your key’s RPM budget.
System One has one additional quota that is separate from rate limiting:
- 64 k tokens per request — state plus all questions combined, and a sub-limit of 32 k tokens for the state plus the single longest question.
- Exceeding this returns
413 context_too_largewith error codecontext_too_large.
413 context_too_large is not a rate limit. It means your individual request is too large. Fix it by reducing the length of your state field — there is no automatic compaction for System One requests.