CCXT
toobit

toobit implicit API

Every raw toobit endpoint exposed as a CCXT implicit method — names, HTTP verbs, paths and rate-limit costs.

Every endpoint in toobit's api definition is exposed as an implicit method — a thin, generated wrapper around the raw exchange endpoint. Use these for exchange-specific functionality the CCXT API does not cover.

These methods are available in every CCXT language — TypeScript, JavaScript, Python, PHP, C# and Go. Call them by the camelCase name shown in the tables below (e.g. commonGetApiV1Time); the snake_case alias (common_get_api_v1_time) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (CommonGetApiV1Time). Switch tabs for the call in each language:

const toobit = new ccxt.toobit ();
const response = await toobit.commonGetApiV1Time (params);

Path parameters wrapped in {} (e.g. {pair}) are substituted from params; everything else in params is sent as the query string or request body. Cost is the rate-limiter weight of each call.

📚 Official toobit API documentation: toobit-docs.github.io · toobit-docs.github.io

59 implicit endpoints across 2 access groups.

common

Base URL: https://api.toobit.com

MethodHTTPEndpointCost
commonGetApiV1TimeGETapi/v1/time1
commonGetApiV1PingGETapi/v1/ping1
commonGetApiV1ExchangeInfoGETapi/v1/exchangeInfo1
commonGetQuoteV1DepthGETquote/v1/depth1
commonGetQuoteV1DepthMergedGETquote/v1/depth/merged1
commonGetQuoteV1TradesGETquote/v1/trades1
commonGetQuoteV1KlinesGETquote/v1/klines1
commonGetQuoteV1IndexKlinesGETquote/v1/index/klines1
commonGetQuoteV1MarkPriceKlinesGETquote/v1/markPrice/klines1
commonGetQuoteV1MarkPriceGETquote/v1/markPrice1
commonGetQuoteV1IndexGETquote/v1/index1
commonGetQuoteV1Ticker24hrGETquote/v1/ticker/24hr40
commonGetQuoteV1ContractTicker24hrGETquote/v1/contract/ticker/24hr40
commonGetQuoteV1TickerPriceGETquote/v1/ticker/price1
commonGetQuoteV1TickerBookTickerGETquote/v1/ticker/bookTicker1
commonGetApiV1FuturesFundingRateGETapi/v1/futures/fundingRate1
commonGetApiV1FuturesHistoryFundingRateGETapi/v1/futures/historyFundingRate1

private

Base URL: https://api.toobit.com

MethodHTTPEndpointCost
privateGetApiV1AccountGETapi/v1/account5
privateGetApiV1AccountCheckApiKeyGETapi/v1/account/checkApiKey1
privateGetApiV1SpotOrderGETapi/v1/spot/order1.67
privateGetApiV1SpotOpenOrdersGETapi/v1/spot/openOrders1.67
privateGetApiV1FuturesOpenOrdersGETapi/v1/futures/openOrders1.67
privateGetApiV1SpotTradeOrdersGETapi/v1/spot/tradeOrders8.35
privateGetApiV1FuturesHistoryOrdersGETapi/v1/futures/historyOrders8.35
privateGetApiV1AccountTradesGETapi/v1/account/trades8.35
privateGetApiV1AccountBalanceFlowGETapi/v1/account/balanceFlow5
privateGetApiV1AccountDepositOrdersGETapi/v1/account/depositOrders5
privateGetApiV1AccountWithdrawOrdersGETapi/v1/account/withdrawOrders5
privateGetApiV1AccountDepositAddressGETapi/v1/account/deposit/address1
privateGetApiV1SubAccountGETapi/v1/subAccount5
privateGetApiV1FuturesAccountLeverageGETapi/v1/futures/accountLeverage1
privateGetApiV1FuturesOrderGETapi/v1/futures/order1.67
privateGetApiV1FuturesPositionsGETapi/v1/futures/positions8.35
privateGetApiV1FuturesBalanceGETapi/v1/futures/balance5
privateGetApiV1FuturesUserTradesGETapi/v1/futures/userTrades8.35
privateGetApiV1FuturesBalanceFlowGETapi/v1/futures/balanceFlow5
privateGetApiV1FuturesCommissionRateGETapi/v1/futures/commissionRate5
privateGetApiV1FuturesTodayPnlGETapi/v1/futures/todayPnl5
privatePostApiV1SpotOrderTestPOSTapi/v1/spot/orderTest1.67
privatePostApiV1SpotOrderPOSTapi/v1/spot/order1.67
privatePostApiV1FuturesOrderPOSTapi/v1/futures/order1.67
privatePostApiV1SpotBatchOrdersPOSTapi/v1/spot/batchOrders3.34
privatePostApiV1SubAccountTransferPOSTapi/v1/subAccount/transfer1
privatePostApiV1AccountWithdrawPOSTapi/v1/account/withdraw1
privatePostApiV1FuturesMarginTypePOSTapi/v1/futures/marginType1
privatePostApiV1FuturesLeveragePOSTapi/v1/futures/leverage1
privatePostApiV1FuturesBatchOrdersPOSTapi/v1/futures/batchOrders3.34
privatePostApiV1FuturesPositionTradingStopPOSTapi/v1/futures/position/trading-stop5.01
privatePostApiV1FuturesPositionMarginPOSTapi/v1/futures/positionMargin1
privatePostApiV1UserDataStreamPOSTapi/v1/userDataStream1
privatePostApiV1ListenKeyPOSTapi/v1/listenKey1
privateDeleteApiV1SpotOrderDELETEapi/v1/spot/order1.67
privateDeleteApiV1FuturesOrderDELETEapi/v1/futures/order1.67
privateDeleteApiV1SpotOpenOrdersDELETEapi/v1/spot/openOrders8.35
privateDeleteApiV1FuturesBatchOrdersDELETEapi/v1/futures/batchOrders8.35
privateDeleteApiV1SpotCancelOrderByIdsDELETEapi/v1/spot/cancelOrderByIds8.35
privateDeleteApiV1FuturesCancelOrderByIdsDELETEapi/v1/futures/cancelOrderByIds8.35
privateDeleteApiV1ListenKeyDELETEapi/v1/listenKey1
privatePutApiV1ListenKeyPUTapi/v1/listenKey1

On this page