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. publicGetPublicTickerALLQuoteId); the snake_case alias (public_get_public_ticker_all_quoteid) also works in JavaScript, Python and PHP, and Go uses the PascalCase form (PublicGetPublicTickerALLQuoteId). Switch tabs for the call in each language:

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

67 implicit endpoints across 2 access groups.

public

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

MethodHTTPEndpointCost
publicGetPublicTickerALLQuoteIdGETpublic/ticker/ALL_{quoteId}1
publicGetPublicTickerBaseIdQuoteIdGETpublic/ticker/{baseId}_{quoteId}1
publicGetPublicOrderbookALLQuoteIdGETpublic/orderbook/ALL_{quoteId}1
publicGetPublicOrderbookBaseIdQuoteIdGETpublic/orderbook/{baseId}_{quoteId}1
publicGetPublicTransactionHistoryBaseIdQuoteIdGETpublic/transaction_history/{baseId}_{quoteId}1
publicGetPublicNetworkInfoGETpublic/network-info1
publicGetPublicAssetsstatusMultichainALLGETpublic/assetsstatus/multichain/ALL1
publicGetPublicAssetsstatusMultichainCurrencyGETpublic/assetsstatus/multichain/{currency}1
publicGetPublicWithdrawMinimumALLGETpublic/withdraw/minimum/ALL1
publicGetPublicWithdrawMinimumCurrencyGETpublic/withdraw/minimum/{currency}1
publicGetPublicAssetsstatusALLGETpublic/assetsstatus/ALL1
publicGetPublicAssetsstatusBaseIdGETpublic/assetsstatus/{baseId}1
publicGetPublicCandlestickBaseIdQuoteIdIntervalGETpublic/candlestick/{baseId}_{quoteId}/{interval}1
publicGetV1MarketAllGETv1/market/all1
publicGetV1CandlesMinutesUnitGETv1/candles/minutes/{unit}1
publicGetV1CandlesDaysGETv1/candles/days1
publicGetV1CandlesWeeksGETv1/candles/weeks1
publicGetV1CandlesMonthsGETv1/candles/months1
publicGetV1TradesTicksGETv1/trades/ticks1
publicGetV1TickerGETv1/ticker1
publicGetV1OrderbookGETv1/orderbook1
publicGetV1MarketVirtualAssetWarningGETv1/market/virtual_asset_warning1
publicGetV1NoticesGETv1/notices1
publicGetV2FeeInoutCurrencyGETv2/fee/inout/{currency}1

private

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

MethodHTTPEndpointCost
privateGetV1AccountsGETv1/accounts1
privateGetV1OrdersChanceGETv1/orders/chance1
privateGetV1OrderGETv1/order1
privateGetV1OrdersGETv1/orders1
privateGetV1TwapGETv1/twap1
privateGetV1WithdrawsGETv1/withdraws1
privateGetV1WithdrawsKrwGETv1/withdraws/krw1
privateGetV1WithdrawGETv1/withdraw1
privateGetV1WithdrawsChanceGETv1/withdraws/chance1
privateGetV1WithdrawsCoinAddressesGETv1/withdraws/coin_addresses1
privateGetV1DepositsGETv1/deposits1
privateGetV1DepositsKrwGETv1/deposits/krw1
privateGetV1DepositGETv1/deposit1
privateGetV1DepositsCoinAddressesGETv1/deposits/coin_addresses1
privateGetV1DepositsCoinAddressGETv1/deposits/coin_address1
privateGetV1StatusWalletGETv1/status/wallet1
privateGetV1ApiKeysGETv1/api_keys1
privatePostInfoAccountPOSTinfo/account1
privatePostInfoBalancePOSTinfo/balance1
privatePostInfoWalletAddressPOSTinfo/wallet_address1
privatePostInfoTickerPOSTinfo/ticker1
privatePostInfoOrdersPOSTinfo/orders1
privatePostInfoUserTransactionsPOSTinfo/user_transactions1
privatePostInfoOrderDetailPOSTinfo/order_detail1
privatePostTradePlacePOSTtrade/place5
privatePostTradeCancelPOSTtrade/cancel5
privatePostTradeBtcWithdrawalPOSTtrade/btc_withdrawal1
privatePostTradeKrwDepositPOSTtrade/krw_deposit1
privatePostTradeKrwWithdrawalPOSTtrade/krw_withdrawal1
privatePostTradeMarketBuyPOSTtrade/market_buy1
privatePostTradeMarketSellPOSTtrade/market_sell1
privatePostTradeStopLimitPOSTtrade/stop_limit1
privatePostV2OrdersPOSTv2/orders1
privatePostV2OrdersBatchPOSTv2/orders/batch6
privatePostV2OrdersCancelPOSTv2/orders/cancel6
privatePostV1TwapPOSTv1/twap1
privatePostV1WithdrawsCoinPOSTv1/withdraws/coin1
privatePostV1WithdrawsKrwPOSTv1/withdraws/krw1
privatePostV1DepositsGenerateCoinAddressPOSTv1/deposits/generate_coin_address1
privatePostV1DepositsKrwPOSTv1/deposits/krw1
privateDeleteV2OrderDELETEv2/order1
privateDeleteV1TwapDELETEv1/twap1
privateDeleteV1WithdrawsCoinDELETEv1/withdraws/coin1

On this page