-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
btcbox
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);import ccxt from 'ccxt';
const btcbox = new ccxt.btcbox ();
const response = await btcbox.publicGetDepth (params);import ccxt
btcbox = ccxt.btcbox()
response = btcbox.public_get_depth(params)$btcbox = new \ccxt\btcbox();
$response = $btcbox->public_get_depth($params);using ccxt;
var btcbox = new Btcbox();
var response = await btcbox.publicGetDepth(parameters);btcbox := ccxt.NewBtcbox(nil)
response := <-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
12 implicit endpoints across 3 access groups.
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
publicGetDepth |
GET | depth |
1 |
publicGetOrders |
GET | orders |
1 |
publicGetTicker |
GET | ticker |
1 |
publicGetTickers |
GET | tickers |
1 |
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
privatePostBalance |
POST | balance |
1 |
privatePostOrderHistory |
POST | order_history |
1 |
privatePostTradeAdd |
POST | trade_add |
1 |
privatePostTradeCancel |
POST | trade_cancel |
1 |
privatePostTradeList |
POST | trade_list |
1 |
privatePostTradeView |
POST | trade_view |
1 |
privatePostWallet |
POST | wallet |
1 |
| Method | HTTP | Endpoint | Cost |
|---|---|---|---|
webApiGetAjaxCoinCoinInfo |
GET | ajax/coin/coinInfo |
1 |
(If the page is not being rendered for you, you can refer to the mirror at https://docs.ccxt.com/)
- Install
- Examples
- Manual
- CCXT Pro
- Contributing
- Supported Exchanges
- Exchanges By Country
- API Spec By Method
- Order Router
- FAQ
- Changelog
- Awesome
- API Spec by Exchange
- alpaca
- apex
- aster
- backpack
- bigone
- binance
- bingx
- bit2c
- bitbank
- bitbns
- bitfinex
- bitflyer
- bitget
- bithumb
- bitmex
- bitopro
- bitrue
- bitso
- bitstamp
- bitteam
- bittrade
- bitvavo
- blockchaincom
- blofin
- btcbox
- btcmarkets
- btcturk
- btse
- bullish
- bybit
- bydfi
- cex
- coinbase
- coinbaseexchange
- coinbaseinternational
- coincheck
- coinex
- coinmate
- coinone
- coinsph
- coinspot
- cryptocom
- cryptomus
- deepcoin
- delta
- deribit
- derive
- digifinex
- dydx
- extended
- foxbit
- gate
- gemini
- grvt
- hashkey
- hibachi
- hitbtc
- hollaex
- htx
- hyperliquid
- independentreserve
- indodax
- kraken
- krakenfutures
- kucoin
- kucoinfutures
- latoken
- lbank
- lighter
- luno
- mercado
- mexc
- modetrade
- mudrex
- nado
- ndax
- okx
- onetrading
- p2b
- pacifica
- paradex
- paymium
- phemex
- poloniex
- revolutx
- tokocrypto
- toobit
- upbit
- weex
- whitebit
- woo
- woofipro
- xt
- zaif
- zebpay
- API Spec by Prediction Exchange