API Reference

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

PlanLimit
Tier 1 (Free)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

The limits per month for all endpoints except for those part of the Wallet API.

PlanLimit
Tier 1 (Free)Maximum 10,000 requests
Tier 2Maximum 100,000 requests
Tier 3Maximum 500,000 requests
Tier 4Maximum 2,000,000 requests
EnterpriseBetween 2,000,000 and unlimited requests

Wallet API limits

PlanLimit
Tier 1 (Free)Maximum 1,000 requests
Tier 2Maximum 50,000 requests
Tier 3Maximum 150,000 requests
Tier 4Maximum 500,000 requests
EnterpriseBetween 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
    }
  }
}