Back to Ccxt

Bithumb

wiki/exchanges-implicit/bithumb.md

4.5.643.9 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# 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:

<!-- 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}
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