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 โ
| Scope | Limit |
|---|---|
| Per API key | To be documented |
| Per IP address | To be documented |
Per-Endpoint Limits โ
Some endpoints have stricter limits due to their computational cost:
| Endpoint | Limit |
|---|---|
| Order placement | To be documented |
| Order cancellation | To be documented |
| Market data | To be documented |
Handling HTTP 429 โ
When you receive a 429 response:
- Read the
Retry-Afterheader โ it indicates how many seconds to wait before retrying. - Back off exponentially โ if no header is present, start with a short delay and double it on each subsequent
429. - Do not retry immediately โ hammering the API after a 429 will extend your cooldown period.
See Also โ
- API Keys โ authentication required for all API calls
- TypeScript SDK โ the SDK handles retries automatically
- API Reference โ per-endpoint rate limit details