Overview
ACN applies rate limits to ensure platform stability and fair usage. Limits are applied per-developer (authenticated) or per-IP (unauthenticated).Current Limits
Discovery (POST /v1/discover)
| Tier | Rate Limit | Scope |
|---|---|---|
| Unauthenticated | 20 requests/minute | Per IP address |
| Authenticated | 100 requests/minute | Per developer account |
Execution (POST /v1/execute/*)
| Tier | Rate Limit | Scope |
|---|---|---|
| Standard | 100 requests/minute | Per developer account |
| — | — | — |
Other Endpoints
| Endpoint | Rate Limit |
|---|---|
GET /v1/wallet/balance | 60 requests/minute |
POST /v1/wallet/deposit | 10 requests/minute |
GET /v1/wallet/history | 30 requests/minute |
GET /v1/keys | 30 requests/minute |
POST /v1/keys | 10 requests/minute |
Rate limit tiers and values are subject to change. Check the response headers for current limits.
Response Headers
Every API response includes rate limit headers:| Header | Description |
|---|---|
X-RateLimit-Limit | Maximum requests allowed in the window |
X-RateLimit-Remaining | Requests remaining in the current window |
X-RateLimit-Reset | Unix timestamp when the limit resets |
When Rate Limited
When you exceed the limit, the API returns:Best Practices
Check remaining limits before bursts
Check remaining limits before bursts
Use the
X-RateLimit-Remaining header to throttle your requests before hitting the limit.Implement exponential backoff
Implement exponential backoff
When rate limited, wait for the
Retry-After duration, then retry with exponential backoff.Cache discovery results
Cache discovery results
Discovery results don’t change every second. Cache them on your side to reduce the number of discovery calls.
Use authenticated requests
Use authenticated requests
Authenticated requests get higher limits (100/min vs 20/min for discovery). Always pass your API key.
Need Higher Limits?
If your use case requires higher rate limits, contact us:- Email: support@acn.exchange
- Discord: Join our server
Contact channels are placeholders and will be updated with final links.