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# and Go. 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}
publicGetTickerBaseIdQuoteIdGETticker/{baseId}_{quoteId}
publicGetOrderbookALLQuoteIdGETorderbook/ALL_{quoteId}
publicGetOrderbookBaseIdQuoteIdGETorderbook/{baseId}_{quoteId}
publicGetTransactionHistoryBaseIdQuoteIdGETtransaction_history/{baseId}_{quoteId}
publicGetNetworkInfoGETnetwork-info
publicGetAssetsstatusMultichainALLGETassetsstatus/multichain/ALL
publicGetAssetsstatusMultichainCurrencyGETassetsstatus/multichain/{currency}
publicGetWithdrawMinimumALLGETwithdraw/minimum/ALL
publicGetWithdrawMinimumCurrencyGETwithdraw/minimum/{currency}
publicGetAssetsstatusALLGETassetsstatus/ALL
publicGetAssetsstatusBaseIdGETassetsstatus/{baseId}
publicGetCandlestickBaseIdQuoteIdIntervalGETcandlestick/{baseId}_{quoteId}/{interval}

private

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

MethodHTTPEndpointCost
privatePostInfoAccountPOSTinfo/account
privatePostInfoBalancePOSTinfo/balance
privatePostInfoWalletAddressPOSTinfo/wallet_address
privatePostInfoTickerPOSTinfo/ticker
privatePostInfoOrdersPOSTinfo/orders
privatePostInfoUserTransactionsPOSTinfo/user_transactions
privatePostInfoOrderDetailPOSTinfo/order_detail
privatePostTradePlacePOSTtrade/place
privatePostTradeCancelPOSTtrade/cancel
privatePostTradeBtcWithdrawalPOSTtrade/btc_withdrawal
privatePostTradeKrwDepositPOSTtrade/krw_deposit
privatePostTradeKrwWithdrawalPOSTtrade/krw_withdrawal
privatePostTradeMarketBuyPOSTtrade/market_buy
privatePostTradeMarketSellPOSTtrade/market_sell
privatePostTradeStopLimitPOSTtrade/stop_limit

On this page