CCXT
bithumb

bithumb implicit API

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

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:

const bithumb = new ccxt.bithumb ();
const response = await bithumb.publicGetTickerALLQuoteId (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 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

On this page