Axiym
Fundamentals

Rate limits

The Axiym API platform limits request volume to protect service stability. Requests that exceed available capacity receive 429 Too Many Requests.

Limits are applied per source IP address as seen by Axiym.

LimitCurrent value
Sustained request rate20 requests per second
Short burst capacity100 requests

If several services share one NAT gateway or proxy, they share the same capacity. Treat the values as operational limits rather than hard-coded application constants.

Response headers

HeaderMeaning
x-ratelimit-limitCapacity for the current source IP.
x-ratelimit-remainingCapacity remaining when the response was generated.
x-ratelimit-afterSeconds until capacity becomes available after throttling.
Retry-AfterStandard retry delay returned with 429.

When throttled, wait for Retry-After, reduce concurrency, and add exponential backoff with jitter if throttling continues. Reuse the original Idempotency-Key when retrying the same state-changing operation.

On this page