Rate limits
Understand the protections we have in place to protect our platform
We are in the early stages of rolling out rate limits. No rate limits are currently enforced, but we are monitoring usage patterns and will implement fair-use protections soon. When enforcement is introduced, this page will be updated to reflect:
- The exact request limits per minute/hour
- Which endpoints or operations are affected
- How to identify when youβre being throttled
- How to handle rate limit errors gracefully
To ensure reliability and fairness across all partners, the Ownright Developer Platform implements rate limiting β a set of controls that prevent any one client from overwhelming the system.
These limits help us maintain:
- β Fast and consistent performance for all partners
- π Protection against accidental or malicious overuse
- π Platform scalability as usage grows
π§ How to handle rate limits (future)
When limits are enforced, youβll receive a 429 Too Many Requests
response if you exceed them.
We will include headers like:
Header | HTTP Status |
---|---|
Retry-After | Number of seconds to wait before retrying |
X-Ownright-RateLimit-Limit | Your current rate limit |
X-Ownright-RateLimit-Remaining | How many requests you have left |
X-Ownright-RateLimit-Reset | Timestamp when the limit resets |
Your app should monitor these headers and implement backoff logic where possible.
π¬ Need higher limits?
If you expect higher volume or have batch processing needs, reach out to our team ([email protected]). Weβre happy to review your use case and adjust limits accordingly.
π Reminder
Even in the absence of hard limits, we log and monitor usage to ensure platform health. Please avoid excessive polling and always use webhooks for real-time updates.