Back to Ccxt

Bithumb

wiki/exchanges-implicit/bithumb.md

4.5.734.0 KB
Original Source

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

<!-- tabs:start -->

JavaScript

javascript
const bithumb = new ccxt.bithumb ();
const response = await bithumb.publicGetTickerALLQuoteId (params);

TypeScript

typescript
import ccxt from 'ccxt';
const bithumb = new ccxt.bithumb ();
const response = await bithumb.publicGetTickerALLQuoteId (params);

Python

python
import ccxt
bithumb = ccxt.bithumb()
response = bithumb.public_get_ticker_all_quoteid(params)

PHP

php
$bithumb = new \ccxt\bithumb();
$response = $bithumb->public_get_ticker_all_quoteid($params);

C#

csharp
using ccxt;
var bithumb = new Bithumb();
var response = await bithumb.publicGetTickerALLQuoteId(parameters);

Go

go
bithumb := ccxt.NewBithumb(nil)
response := <-bithumb.PublicGetTickerALLQuoteId(params)
<!-- tabs:end -->

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 bithumb API documentation: apidocs.bithumb.com

28 implicit endpoints across 2 access groups.

public

Base URL: https://api.{hostname}/public

MethodHTTPEndpointCost
publicGetTickerALLQuoteIdGETticker/ALL_{quoteId}1
publicGetTickerBaseIdQuoteIdGETticker/{baseId}_{quoteId}1
publicGetOrderbookALLQuoteIdGETorderbook/ALL_{quoteId}1
publicGetOrderbookBaseIdQuoteIdGETorderbook/{baseId}_{quoteId}1
publicGetTransactionHistoryBaseIdQuoteIdGETtransaction_history/{baseId}_{quoteId}1
publicGetNetworkInfoGETnetwork-info1
publicGetAssetsstatusMultichainALLGETassetsstatus/multichain/ALL1
publicGetAssetsstatusMultichainCurrencyGETassetsstatus/multichain/{currency}1
publicGetWithdrawMinimumALLGETwithdraw/minimum/ALL1
publicGetWithdrawMinimumCurrencyGETwithdraw/minimum/{currency}1
publicGetAssetsstatusALLGETassetsstatus/ALL1
publicGetAssetsstatusBaseIdGETassetsstatus/{baseId}1
publicGetCandlestickBaseIdQuoteIdIntervalGETcandlestick/{baseId}_{quoteId}/{interval}1

private

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

MethodHTTPEndpointCost
privatePostInfoAccountPOSTinfo/account1
privatePostInfoBalancePOSTinfo/balance1
privatePostInfoWalletAddressPOSTinfo/wallet_address1
privatePostInfoTickerPOSTinfo/ticker1
privatePostInfoOrdersPOSTinfo/orders1
privatePostInfoUserTransactionsPOSTinfo/user_transactions1
privatePostInfoOrderDetailPOSTinfo/order_detail1
privatePostTradePlacePOSTtrade/place1
privatePostTradeCancelPOSTtrade/cancel1
privatePostTradeBtcWithdrawalPOSTtrade/btc_withdrawal1
privatePostTradeKrwDepositPOSTtrade/krw_deposit1
privatePostTradeKrwWithdrawalPOSTtrade/krw_withdrawal1
privatePostTradeMarketBuyPOSTtrade/market_buy1
privatePostTradeMarketSellPOSTtrade/market_sell1
privatePostTradeStopLimitPOSTtrade/stop_limit1