CCXT
btcbox

btcbox implicit API

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

Every endpoint in btcbox'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#, Go and Java. Call them by the camelCase name shown in the tables below (e.g. publicGetDepth); the snake_case alias (public_get_depth) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetDepth). Switch tabs for the call in each language:

const btcbox = new ccxt.btcbox ();
const response = await btcbox.publicGetDepth (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 btcbox API documentation: blog.btcbox.jp

11 implicit endpoints across 3 access groups.

public

MethodHTTPEndpointCost
publicGetDepthGETdepth1
publicGetOrdersGETorders1
publicGetTickerGETticker1
publicGetTickersGETtickers1

private

MethodHTTPEndpointCost
privatePostBalancePOSTbalance1
privatePostTradeAddPOSTtrade_add1
privatePostTradeCancelPOSTtrade_cancel1
privatePostTradeListPOSTtrade_list1
privatePostTradeViewPOSTtrade_view1
privatePostWalletPOSTwallet1

webApi

MethodHTTPEndpointCost
webApiGetAjaxCoinCoinInfoGETajax/coin/coinInfo1

On this page