Skip to content

Rate Limits โ€‹

To ensure fair access and platform stability, the Neony DEX API enforces rate limits on all endpoints. Exceeding these limits will result in a 429 Too Many Requests response.

Global Limits โ€‹

ScopeLimit
Per API keyTo be documented
Per IP addressTo be documented

Per-Endpoint Limits โ€‹

Some endpoints have stricter limits due to their computational cost:

EndpointLimit
Order placementTo be documented
Order cancellationTo be documented
Market dataTo be documented

Handling HTTP 429 โ€‹

When you receive a 429 response:

  1. Read the Retry-After header โ€” it indicates how many seconds to wait before retrying.
  2. Back off exponentially โ€” if no header is present, start with a short delay and double it on each subsequent 429.
  3. Do not retry immediately โ€” hammering the API after a 429 will extend your cooldown period.

See Also โ€‹