CCXT
bitopro

bitopro implicit API

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

Every endpoint in bitopro'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. publicGetOrderBookPair); the snake_case alias (public_get_order_book_pair) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetOrderBookPair). Switch tabs for the call in each language:

const bitopro = new ccxt.bitopro ();
const response = await bitopro.publicGetOrderBookPair (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 bitopro API documentation: github.com

26 implicit endpoints across 2 access groups.

public

MethodHTTPEndpointCost
publicGetOrderBookPairGETorder-book/{pair}1
publicGetTickersGETtickers1
publicGetTickersPairGETtickers/{pair}1
publicGetTradesPairGETtrades/{pair}1
publicGetProvisioningCurrenciesGETprovisioning/currencies1
publicGetProvisioningTradingPairsGETprovisioning/trading-pairs1
publicGetProvisioningLimitationsAndFeesGETprovisioning/limitations-and-fees1
publicGetTradingHistoryPairGETtrading-history/{pair}1
publicGetPriceOtcCurrencyGETprice/otc/{currency}1

private

MethodHTTPEndpointCost
privateGetAccountsBalanceGETaccounts/balance1
privateGetOrdersHistoryGETorders/history1
privateGetOrdersAllPairGETorders/all/{pair}1
privateGetOrdersTradesPairGETorders/trades/{pair}1
privateGetOrdersPairOrderIdGETorders/{pair}/{orderId}1
privateGetWalletWithdrawCurrencySerialGETwallet/withdraw/{currency}/{serial}1
privateGetWalletWithdrawCurrencyIdIdGETwallet/withdraw/{currency}/id/{id}1
privateGetWalletDepositHistoryCurrencyGETwallet/depositHistory/{currency}1
privateGetWalletWithdrawHistoryCurrencyGETwallet/withdrawHistory/{currency}1
privateGetOrdersOpenGETorders/open1
privatePostOrdersPairPOSTorders/{pair}0.5
privatePostOrdersBatchPOSTorders/batch6.666666666666667
privatePostWalletWithdrawCurrencyPOSTwallet/withdraw/{currency}10
privatePutOrdersPUTorders5
privateDeleteOrdersPairIdDELETEorders/{pair}/{id}0.6666666666666666
privateDeleteOrdersAllDELETEorders/all5
privateDeleteOrdersPairDELETEorders/{pair}5

On this page