For the complete documentation index, see llms.txt. This page is also available as Markdown.

Rate Limits

To ensure platform stability and fair usage across tenants, Origin Studio API requests are rate limited.

Rate limits apply per API key.


Current Limits

Limit Type
Threshold

Per Second

100 requests per second

Per Day

x requests per 24-hour period

Both limits are enforced independently.

This means:

  • You may not exceed 100 requests in any single second

  • You may not exceed x requests within a 24-hour window


Exceeding Rate Limits

If a rate limit is exceeded, the API will return:

429 Too Many Requests

Example Response

{
  "jsonapi": {
    "version": "1.1"
  },
  "errors": [
    {
      "status": "429",
      "title": "Too Many Requests",
      "detail": "Rate limit exceeded."
    }
  ]
}

Last updated