Getting Started
Public Data
Trading
- POSTPlace order
- DELCancel order
- DELCancel multiple orders
- GETGet order
- GETGet orders
- PUTEdit order
- POSTPlace algo order
- DELCancel algo order
- DELCancel multiple algo orders
- DELCancel all orders by symbol
- GETGet algo order
- GETGet algo orders
- PUTEdit algo order
- GETGet transaction by trade id (last 3 months)
- GETGet transaction history (in the past 2 years)
- GETGet trading fee
- POSTCancel all after
Account
Assets
Futures
Spot Margin
Websocket Streams
- Introduction
- Public Market Data
- Private User Data
- Commands
Public Market Data
Estimated funding rate
Copy
{
"topic": "estfundingrate@PERP_BTC_USDT",
"ts": 1618820361552,
"data": {
"s": "PERP_BTC_USDT", // symbol
"r": "1.27988", // funding rate
"ft": 1618820360000 // next funding time
"ts": 1618820200000 // system timestamp
}
}
Topic: estfundingrate@{symbol}
Push interval: 1 min
Subscribe to estimated funding rate of the symbol.
Copy
{
"topic": "estfundingrate@PERP_BTC_USDT",
"ts": 1618820361552,
"data": {
"s": "PERP_BTC_USDT", // symbol
"r": "1.27988", // funding rate
"ft": 1618820360000 // next funding time
"ts": 1618820200000 // system timestamp
}
}
Copy
{
"topic": "estfundingrate@PERP_BTC_USDT",
"ts": 1618820361552,
"data": {
"s": "PERP_BTC_USDT", // symbol
"r": "1.27988", // funding rate
"ft": 1618820360000 // next funding time
"ts": 1618820200000 // system timestamp
}
}
Assistant
Responses are generated using AI and may contain mistakes.