Discover/feed.bithumb.com API
live

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.

Endpoints
13
Updated
14d ago
Try it

No input parameters required.

api.parse.bot/scraper/a05f54db-d107-4dfe-9f49-55037ab2b2aa/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/a05f54db-d107-4dfe-9f49-55037ab2b2aa/get_all_tickers_krw' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 13 totalclick to expand

Fetch all KRW market trading tickers from Bithumb public API. Returns current price data for all cryptocurrency pairs traded against KRW.

Input

No input parameters required.

Response
{
  "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.

Common use cases
  • 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
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Bithumb have an official developer API?+
Yes. Bithumb publishes a public REST API documented at https://apidocs.bithumb.com. The Parse API exposes data from the same exchange, covering the public market data and feed content endpoints described here.
What does get_candlestick return and which intervals are supported?+
get_candlestick returns an array of arrays, each in the format [timestamp, open, close, high, low, volume]. The interval parameter accepts nine values: 1m, 3m, 5m, 10m, 30m, 1h, 6h, 12h, and 24h. Both order_currency and payment_currency are required inputs alongside interval.
How are the bulk ticker endpoints different from get_ticker?+
get_all_tickers_krw and get_all_tickers_btc return price data for every listed symbol in a single response, keyed by symbol name, with a shared date timestamp on the envelope. get_ticker returns a richer field set for one specific pair — including prev_closing_price and acc_trade_value — but requires explicit order_currency and payment_currency inputs.
Does the API cover authenticated account data such as balances, open orders, or trade history for a logged-in user?+
No. The API covers only public market data (tickers, order books, transactions, candlesticks) and Bithumb's public content feed (notices, press releases, trend reports). Private account endpoints are not included. You can fork this API on Parse and revise it to add endpoints targeting Bithumb's authenticated private API surface.
Are notice categories available in English, or only Korean?+
The category filter on get_notices uses Korean strings as values (for example, 안내 for general announcements and 점검 for maintenance notices), reflecting how Bithumb categorizes content on its platform. The noticeList array content is likewise returned in Korean. This API covers Bithumb Korea and does not currently include a localized English content feed. You can fork it on Parse and revise to add translation or mapping logic over the returned fields.
Page content last updated . Spec covers 13 endpoints from feed.bithumb.com.
Related APIs in Crypto Web3See all →
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
ens.vision API
Search and explore ENS domains across the marketplace, discover owner portfolios and activity feeds, and resolve names to addresses with complete text records. Get domain details, browse categories, view offers and recommendations, and track all marketplace listings in one place.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.