CCXT
bitbns

bitbns implicit API

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

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

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

36 implicit endpoints across 3 access groups.

www

Base URL: https://{hostname}

MethodHTTPEndpointCost
wwwGetOrderFetchMarketsGETorder/fetchMarkets
wwwGetOrderFetchTickersGETorder/fetchTickers
wwwGetOrderFetchOrderbookGETorder/fetchOrderbook
wwwGetOrderGetTickerWithVolumeGETorder/getTickerWithVolume
wwwGetExchangeDataOhlcGETexchangeData/ohlc
wwwGetExchangeDataOrderBookGETexchangeData/orderBook
wwwGetExchangeDataTradedetailsGETexchangeData/tradedetails

v1

Base URL: https://api.{hostname}/api/trade/v1

MethodHTTPEndpointCost
v1GetPlatformStatusGETplatform/status
v1GetTickersGETtickers
v1GetOrderbookSellSymbolGETorderbook/sell/{symbol}
v1GetOrderbookBuySymbolGETorderbook/buy/{symbol}
v1PostCurrentCoinBalanceEVERYTHINGPOSTcurrentCoinBalance/EVERYTHING
v1PostGetApiUsageStatusUSAGEPOSTgetApiUsageStatus/USAGE
v1PostGetOrderSocketTokenUSAGEPOSTgetOrderSocketToken/USAGE
v1PostCurrentCoinBalanceSymbolPOSTcurrentCoinBalance/{symbol}
v1PostOrderStatusSymbolPOSTorderStatus/{symbol}
v1PostDepositHistorySymbolPOSTdepositHistory/{symbol}
v1PostWithdrawHistorySymbolPOSTwithdrawHistory/{symbol}
v1PostWithdrawHistoryAllSymbolPOSTwithdrawHistoryAll/{symbol}
v1PostDepositHistoryAllSymbolPOSTdepositHistoryAll/{symbol}
v1PostListOpenOrdersSymbolPOSTlistOpenOrders/{symbol}
v1PostListOpenStopOrdersSymbolPOSTlistOpenStopOrders/{symbol}
v1PostGetCoinAddressSymbolPOSTgetCoinAddress/{symbol}
v1PostPlaceSellOrderSymbolPOSTplaceSellOrder/{symbol}
v1PostPlaceBuyOrderSymbolPOSTplaceBuyOrder/{symbol}
v1PostBuyStopLossSymbolPOSTbuyStopLoss/{symbol}
v1PostSellStopLossSymbolPOSTsellStopLoss/{symbol}
v1PostCancelOrderSymbolPOSTcancelOrder/{symbol}
v1PostCancelStopLossOrderSymbolPOSTcancelStopLossOrder/{symbol}
v1PostListExecutedOrdersSymbolPOSTlistExecutedOrders/{symbol}
v1PostPlaceMarketOrderSymbolPOSTplaceMarketOrder/{symbol}
v1PostPlaceMarketOrderQntySymbolPOSTplaceMarketOrderQnty/{symbol}

v2

Base URL: https://api.{hostname}/api/trade/v2

MethodHTTPEndpointCost
v2PostOrdersPOSTorders
v2PostCancelPOSTcancel
v2PostGetordersnewPOSTgetordersnew
v2PostMarginOrdersPOSTmarginOrders

On this page