DZap rate-limits requests to keep the API responsive for everyone. Limits differ by API and authentication state.Documentation Index
Fetch the complete documentation index at: https://docs.dzap.io/llms.txt
Use this file to discover all available pages before exploring further.
Limits at a glance
| Surface | Default | With API key |
|---|---|---|
Fuse API — /v1/quote | 3 req/sec/IP | n/a (no auth) |
Fuse API — /v1/buildTx | 3 req/sec/IP | n/a |
| Fuse API — other reads | 60 req/min/IP | n/a |
| Trade API — quotes/build | 60 req/min/IP | per-key tier (typically 5–50 req/sec) |
| Trade API — reads | 120 req/min/IP | per-key tier |
Response headers
Every response includes:X-RateLimit-Reset is a Unix timestamp.
When you hit a limit
You’ll get429 Too Many Requests:
Best practices
- Cache quotes briefly — quotes are valid for ~30s; cache server-side if you re-render the same pair.
- Batch where possible —
/v1/quotesaccepts an array of items indata. One request, many quotes. - Use the SDK — it implements retries with backoff for you.
- Use an API key for production — per-key limits are higher and more predictable than per-IP.
Need more headroom?
Email[email protected] with your projected req/sec and use case. Higher tiers are available for production deployments.