Binance · Schema

RateLimit

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
rateLimitType string The type of rate limit.
interval string The interval unit.
intervalNum integer The interval number.
limit integer The maximum count within the interval.
View JSON Schema on GitHub

JSON Schema

binance-ratelimit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateLimit",
  "title": "RateLimit",
  "type": "object",
  "properties": {
    "rateLimitType": {
      "type": "string",
      "enum": [
        "REQUEST_WEIGHT",
        "ORDERS",
        "RAW_REQUESTS"
      ],
      "description": "The type of rate limit."
    },
    "interval": {
      "type": "string",
      "enum": [
        "SECOND",
        "MINUTE",
        "DAY"
      ],
      "description": "The interval unit."
    },
    "intervalNum": {
      "type": "integer",
      "description": "The interval number."
    },
    "limit": {
      "type": "integer",
      "description": "The maximum count within the interval."
    }
  }
}