Get Rate Limit

Get API rate limit usage information.

Request

Method:

GET ./api/v2/rate-limit

Parameters:

ParameterTypeDescription

-

-

-

Request example:

curl --header "Authorization: $AUTH_HEADER" \
'https://ny.solana.dex.blxrbdn.com/api/v2/rate-limit

Response:

Fields:

FieldsTypeDescription

accountID

string

Your bloXroute account ID

tier

string

Your current account tier.

interval

string

Rate limit interval.

intervalNum

unit64

Rate limit interval multiplier. *If the interval is sec and intervalNum is 60, which means the rate limit refreshes every 60 seconds.

limit

unit64

This is your current rate limit which is based on your account tier.

count

unit64

This is your current rate limit usage. If the count is higher than the limit, you will be limited.

reset

unit64

Timestamp when the rate limite gets reset.

Response Example:

{
  "accountID":"555399c7-...56", 
  "tier":"Introductory", 
  "interval":"second", 
  "intervalNum":"60", 
  "limit":"60", 
  "count":"50", 
  "reset":"1708635900"
}

Last updated