Limit
Ocoya applies a global user rate limit of 60 requests per minute for REST API requests using the same API key. If you expect bursts, queue requests and use a backoff strategy instead of retrying immediately.Rate Limit Response
When the limit is exceeded, the API returns429 Too Many Requests.
Headers
Recommended Handling
Back off after 429
Back off after 429
Wait until the reset window before retrying requests.
Avoid polling aggressively
Avoid polling aggressively
Prefer event-driven workflows and scheduled jobs over high-frequency polling.
Batch where possible
Batch where possible
Reuse workspace and social profile IDs instead of fetching them before every post creation.