Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.coraltalk.com/llms.txt

Use this file to discover all available pages before exploring further.

Rate limits

Platform API requests are rate limited per API key using a sliding window.

Default limits

EnvironmentLimit
Dev (ct_test_)60 requests per minute
Prod (ct_live_)600 requests per minute

Rate limit headers

HeaderDescription
X-RateLimit-LimitMaximum requests allowed in the window
X-RateLimit-RemainingRequests remaining in the current window
X-RateLimit-ResetUnix timestamp when the window resets
When exceeded, the API returns 429 Too Many Requests with a Retry-After header.

Best practices

  • On 429, wait for Retry-After before retrying.
  • Use dev keys while iterating to protect production quotas.
  • Cache list responses where possible instead of polling on every action.