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.

For the paid plan send us a message on Discord (https://discord.com/invite/rs5GPAZ7tG) or Twitter (https://twitter.com/syve_ai).

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

PlanLimit
Tier 0 (Free plan without API key)2 requests per second
Tier 1 (Free plan with API key)5 requests per second
Tier 210 requests per second
Tier 315 requests per second
Tier 425 requests per second
EnterpriseBetween 25 and 100 requests per second

Requests per month

PlanLimit
Tier 0 (Free plan without API key)Maximum 100 requests
Tier 1 (Free plan with API key)Maximum 100,000 requests
Tier 2Maximum 250,000 requests
Tier 3Maximum 500,000 requests
Tier 4Maximum 2,000,000 requests
EnterpriseBetween 2,000,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
    }
  }
}