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

Rate limits

The rate limit is 120 requests per minute per API key, applied uniformly across all endpoints in both Production and Sandbox environments. When the limit is exceeded, the API responds with:

{
    "errors": [
        {
            "status": 429,
            "title": "Too Many Requests",
            "code": "too_many_requests"
        }
    ]
}

Last updated