Current Rate Limits
Unauthenticated
| Endpoint Scope | Rate Limit |
|---|---|
| 200 requests per two hours | |
| Rest of endpoints | 200 requests per two hours |
Authenticated (with API key specified)
| Endpoint Scope | Rate Limit |
|---|---|
| 200 requests per minute | |
| Rest of endpoints | 200 requests per minute |
Higher limits may be available for clients in the custom terms. Please Contact Us for more information.If you exceed your rate limits, you’ll receive a
429 Too Many Requests HTTP response.
How to Get an API Key
To obtain an API key with higher rate limits, you need to register on the portal.delora.build. After registration, your unique API key will be generated.Best Practices
To avoid hitting rate limits:- Cache results from
GET /tokens,GET /chains, and static endpoints - Avoid polling frequently for the same data
- Batch or debounce user input that triggers API calls
Using the API key
Delora API do not require API key. API key is only needed for higher rate limits.
Never expose your x-api-key in client-side environments such as browser-based JavaScript. Using the API key on the client side can lead to unauthorized usage or abuse of your key, as it becomes publicly accessible in the browser’s developer tools or network tab. For server-side integrations (e.g. API requests from your backend), always keep your key secret and secure.

