Market data
Exchange information
Returns trading rules and symbol information for all listed instruments.
Returns trading rules and symbol information for all listed instruments.
Response Body
application/json
curl -X GET "http://localhost:3000/api/v1/exchangeInfo"{
"timezone": "UTC",
"serverTime": 1709123456789,
"symbols": [
{
"symbol": "AAPL-USD",
"status": "TRADING",
"baseAsset": "AAPL",
"quoteAsset": "USD",
"filters": [
{
"filterType": "PRICE_FILTER",
"tickSize": "0.01"
}
]
}
]
}Order book depth GET
Returns the current order book depth for a symbol. Follows Binance USDS-M Futures format with bids and asks as `[price, qty]` arrays.
Cancel orders DELETE
Cancel one or more orders by order ID. Requires EIP-712 signature authentication. In dev mode, the `X-Account-Address` header can be used as a shortcut.