The maximum number of API calls that can be made in a period.
Our API limits the number of requests you can make per second. There is also a maximum number of requests you can make per month.
Our pricing for our different plans can be found here. You can pay using Paypal or with crypto.
If you want to pay with Paypal follow the instructions on our pricing page here. If you want to pay with crypto send us a message on Discord (https://discord.com/invite/rs5GPAZ7tG).
Rate limit exceeded error
If the rate limit is exceeded, the API request will fail, and the response will return a status code of 429 (see Error Reference).
Requests per second
Plan | Limit |
---|---|
Tier 1 (Free) | 5 requests per second |
Tier 2 | 10 requests per second |
Tier 3 | 15 requests per second |
Tier 4 | 25 requests per second |
Enterprise | Between 25 and 100 requests per second |
Requests per month
The limits per month for all endpoints except for those part of the Wallet API.
Plan | Limit |
---|---|
Tier 1 (Free) | Maximum 10,000 requests |
Tier 2 | Maximum 100,000 requests |
Tier 3 | Maximum 500,000 requests |
Tier 4 | Maximum 2,000,000 requests |
Enterprise | Between 2,000,000 and unlimited requests |
Wallet API limits
Plan | Limit |
---|---|
Tier 1 (Free) | Maximum 1,000 requests |
Tier 2 | Maximum 50,000 requests |
Tier 3 | Maximum 150,000 requests |
Tier 4 | Maximum 500,000 requests |
Enterprise | Between 500,000 and unlimited requests |
Check your usage
We have an endpoint you can use to check your usage. How it works:
Request
https://api.syve.ai/v1/check-usage?key=<YOUR_KEY>
Response
{
"usage_total": 9888,
"usage_per_month": {
"2023-10-01": 9888
},
"usage_per_month_per_endpoint": {
"2023-10-01": {
"/v1/price/historical/ohlc": 1844,
"/v1/price-api/batch-latest-token-prices": 1273,
"/v1/wallet-api/latest-performance-per-token": 2249,
"/v1/wallet-api/latest-total-performance": 2232,
"/v1/sql": 2290
}
}
}