legal.backToHomedocs.api.swagger ↗
docs.api.title
API · v1
docs.api.subtitle
docs.api.baseUrlLabel
/v1docs.api.authTitle
docs.api.authBody
docs.api.idemTitle
docs.api.idemBody
docs.api.endpointsTitle
docs.api.catMarket
GET
/v1/market/tickers24h ticker for every listed marketGET
/v1/market/orderbook/{symbol}Order-book depth for a symbolGET
/v1/market/candlesOHLCV candles (symbol, interval)GET
/v1/market/listed-coinsListed assets and trading rulesGET
/v1/market/stream/tickersLive ticker stream (SSE)docs.api.catTrading
POST
/v1/ordersPlace a spot order — needs Idempotency-Keydocs.api.privateDELETE
/v1/orders/{id}Cancel an open orderdocs.api.privateGET
/v1/ordersList your ordersdocs.api.privateGET
/v1/orders/streamLive order updates (SSE)docs.api.privatedocs.api.catWallet
GET
/v1/wallet/balancesSpot balances (available / locked)docs.api.privateGET
/v1/wallet/ledgerDouble-entry balance ledgerdocs.api.privatePOST
/v1/wallet/withdrawalsRequest a withdrawaldocs.api.privateGET
/v1/wallet/stream/balancesLive balance updates (SSE)docs.api.privatedocs.api.catFutures
GET
/v1/futures/accountUSDT-M margin accountdocs.api.privateGET
/v1/futures/positionsOpen positionsdocs.api.privatePOST
/v1/futures/ordersPlace a futures orderdocs.api.privateGET
/v1/futures/contractContract specificationsdocs.api.catAuth
POST
/v1/auth/registerCreate an accountPOST
/v1/auth/loginObtain access & refresh tokensPOST
/v1/auth/refreshRotate the access tokenPOST
/v1/auth/2fa/setupSet up TOTP two-factor authdocs.api.privatedocs.api.exampleTitle
# public market data
curl -s /v1/market/tickers
# authenticated request
curl -s /v1/wallet/balances \
-H "Authorization: Bearer <accessToken>"
# place a spot order (idempotent)
curl -s -X POST /v1/orders \
-H "Authorization: Bearer <accessToken>" \
-H "Idempotency-Key: $(uuidgen)" \
-H "Content-Type: application/json" \
-d '{"symbol":"BTC-USDT","side":"BUY","type":"LIMIT","price":"58000","quantity":"0.01"}'docs.api.streamTitle
docs.api.streamBody
docs.api.errTitle
docs.api.errBody
docs.api.rateTitle
docs.api.rateBody