Endpoints
🔗 Postman Interface Collection Documentation
Common Fields
category: Type, currently only supports spot - spot trading
symbol: Trading pair
market: Trading pair (planned to be deprecated, it is recommended to use symbol)
Common Field Explanations for Public Data
"timestamp": Timestamp in milliseconds as a UNIX timestamp.
"sell": Selling price.
"buy": Buying price.
"high": Highest price.
"low": Lowest price.
"last": The latest transaction price, indicating the price of the most recent transaction.
"vol": Trading volume, indicating the market's trading volume within a certain period before the current record time point.
"last24h": The average of the latest transaction prices in the past 24 hours.
"high24h": The highest transaction price in the past 24 hours.
"low24h": The lowest transaction price in the past 24 hours.
"vol24h": The total trading volume in the past 24 hours.
"change24h": 24-hour price fluctuation rate, indicating the percentage change in Bitcoin price over the past 24 hours. A negative number indicates a price drop, e.g., 0.03658904186574487 represents a price drop of approximately 0.0366%.
Order Type (type)
0: LIMIT - Limit Order
1: MARKET - Market Order
2: STOP - Stop Order
Order Direction
BUY - Buy
SELL - Sell
Order Status (state)
NEW
TRADE
CANCEL
PENDING
Order Object Example
{
"trader": "71b0ee42acade6", // apiKey
"symbol": "ETCUSDT", // Trading pair
"price": "1200.34", // Price in USD
"quantity": "0.01", // Actual quantity
"market": "ETCUSDT",
"contr": "ETCUSDT", // Contract pair
"id": 107385577, // Order ID
"ref": null,
"type": "LIMIT", // Refer to Order Type
"state": "NEW", // Refer to Order Status
"side": "BUY", // Refer to Order Direction
"lots": 100,
"ticks": 12003400,
"resd": 100,
"exec": 0,
"cost": 0,
"lastLots": null,
"lastTicks": null,
"created": 1714320731750,
"modified": 1714320731750
}
Category
Api
Explanation
Basic Infrastructure
Authentication Encryption
See above
Access Rule
See above
WebSocket Data Push
To be supplemented
check the transaction fee
The makerFee and takerFee fields in Spot Account Information
Last updated
Was this helpful?