A ALEFBADeveloper Platform
Status Trust

Reliability

Rate Limits

Design integrations to operate safely when request limits are reached.

Current documented behavior

Protected API keys may return HTTP 429 Too Many Requests after reaching the configured daily allowance.

json
{
  "success": false,
  "error": {
    "code": "rate_limited",
    "message": "Daily request limit reached. Try again tomorrow."
  }
}

Client recommendations

Example backoff sequence

text
1s → 2s → 4s → 8s → 16s

Limit values: The exact allowance can depend on production configuration. Treat the API response as the source of truth.