feed.bithumb.com APIfeed.bithumb.com ↗
Access Bithumb Korea market data via API: real-time tickers, order books, transaction history, OHLCV candlesticks, notices, and press releases for KRW and BTC pairs.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/a05f54db-d107-4dfe-9f49-55037ab2b2aa/get_all_tickers_krw' \ -H 'X-API-Key: $PARSE_API_KEY'
Fetch all KRW market trading tickers from Bithumb public API. Returns current price data for all cryptocurrency pairs traded against KRW.
No input parameters required.
{
"type": "object",
"fields": {
"data": "object containing ticker data for each cryptocurrency symbol, plus a date timestamp",
"status": "Bithumb API status code string (0000 indicates success)"
},
"sample": {
"data": {
"data": {
"BTC": {
"max_price": "118207000",
"min_price": "117230000",
"fluctate_24H": "-1727000",
"units_traded": "88.10334183",
"closing_price": "118140000",
"opening_price": "118107000",
"acc_trade_value": "10375718343.80585",
"units_traded_24H": "530.67862073",
"fluctate_rate_24H": "-1.44",
"prev_closing_price": "118052000",
"acc_trade_value_24H": "63054455695.46984"
},
"ETH": {
"max_price": "3393000",
"min_price": "3363000",
"fluctate_24H": "-62000",
"units_traded": "2127.191176291563740502",
"closing_price": "3392000",
"opening_price": "3385000",
"acc_trade_value": "7189329662.237347292877057",
"units_traded_24H": "15859.876188171037277515",
"fluctate_rate_24H": "-1.8",
"prev_closing_price": "3386000",
"acc_trade_value_24H": "54187673365.678779614980043"
},
"date": "1778178333066"
},
"status": "0000"
},
"status": "success"
}
}About the feed.bithumb.com API
The Bithumb Feed API covers 13 endpoints that expose real-time market data and exchange content from Bithumb Korea, one of South Korea's largest crypto exchanges. You can pull live ticker snapshots for all KRW or BTC pairs at once with get_all_tickers_krw and get_all_tickers_btc, drill into individual pairs for order book depth and recent trade history, fetch OHLCV candlesticks across nine time intervals, and retrieve paginated notices, press releases, and trend reports.
Market Data Endpoints
get_ticker accepts an order_currency (e.g. BTC, ETH, SOL) and a payment_currency (KRW or BTC) and returns a data object with opening_price, closing_price, min_price, max_price, units_traded, acc_trade_value, prev_closing_price, and units_traded_24H. For a snapshot across all listed pairs at once, get_all_tickers_krw and get_all_tickers_btc return a keyed object where each symbol maps to its own price data block, plus a date timestamp on the envelope. All endpoints return a status field; the string 0000 indicates a successful response.
Order Book, Trades, and Candlesticks
get_orderbook returns bids and asks arrays with price and quantity fields per level, along with timestamp, payment_currency, and order_currency on the wrapper. get_transaction_history returns an array of recent trades, each carrying transaction_date, type (ask or bid), units_traded, price, and total. For historical OHLCV data, get_candlestick accepts an interval parameter — valid values are 1m, 3m, 5m, 10m, 30m, 1h, 6h, 12h, and 24h — and returns an array of [timestamp, open, close, high, low, volume] arrays.
Exchange Content Endpoints
Beyond price data, the API surfaces Bithumb's editorial feed. get_notices accepts optional page, keyword, and category filters (Korean category strings such as 안내 or 점검) and returns a noticeList array with a totalCount. Individual notice bodies are available through get_notice_detail by notice_id. The same list-and-detail pattern applies to press releases (get_press_releases / get_press_release_detail) and trend reports (get_trend_reports / get_trend_report_detail). search_feed runs a keyword query across all three content types simultaneously and returns press, trends, and notices result objects in a single response.
- Build a KRW crypto price dashboard using get_all_tickers_krw to display real-time prices across all listed pairs
- Monitor bid-ask spread and market depth for a specific pair using get_orderbook price and quantity fields
- Feed OHLCV arrays from get_candlestick into a charting library to display 1m–24h candlestick charts
- Detect recent buy/sell pressure by streaming get_transaction_history and filtering on the type field
- Alert on exchange maintenance windows by polling get_notices with the 점검 category filter
- Aggregate Bithumb trend reports alongside other exchange research feeds using get_trend_reports and get_trend_report_detail
- Cross-reference BTC-denominated prices alongside KRW prices using get_all_tickers_btc for arbitrage analysis
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.