BinanceSpotRest.Endpoints.Account.RateLimitOrder.Query (Binance Spot Rest v0.2.1)
View SourceRate Limit Order
Query Unfilled Order Count (USER_DATA)
GET /api/v3/rateLimit/orderDisplays the user's unfilled order count for all intervals.
Weight: 40
Parameters:
| Name | Type | Mandatory | Description |
|---|---|---|---|
| recvWindow | DECIMAL | NO | The value cannot be greater than 60000. Supports up to three decimal places of precision (e.g., 6000.346) so that microseconds may be specified. |
| timestamp | LONG | YES |
Data Source: Memory
Response:
[
{
"rateLimitType": "ORDERS",
"interval": "SECOND",
"intervalNum": 10,
"limit": 50,
"count": 0
},
{
"rateLimitType": "ORDERS",
"interval": "DAY",
"intervalNum": 1,
"limit": 160000,
"count": 0
}
]