ParseForge Scrapers

Bithumb Korea Market Tickers Scraper

parseforge/bithumb-korea-markets-scraper

Developer toolsAutomationOther

Collects real-time Bithumb Korea KRW market tickers. Returns last price, 24h change rate, trade value, high, and low for each coin pair. Filter by symbol, sort by volume or change, and limit the row count.

Run this scraper See the API call
Total users
2
Monthly active
1
Total runs
55
Bookmarked
0
Rating
Not rated yet
Last modified
12 days ago

Overview

ParseForge

Bithumb Korea Market Tickers Scraper

Scrape real-time Bithumb Korea market tickers for any KRW coin pair, sorted by volume, change, or price. Every ticker returns the last price, 24h change rate, trade value, and high/low. Export to CSV, JSON, Excel, or XML.

Bithumb's web pages are built for traders, not for bulk data collection. This actor reads the public market ticker endpoint directly and returns a clean, flat dataset of KRW market pairs. Filter by specific coin symbols like BTC or XRP, sort by 24h trade value or price change, and limit how many rows you pull per run.

Who uses it What they scrape Bithumb for
Crypto quant traders Feed Bithumb price and volume data into a backtesting engine or arbitrage model.
Market analysts Track which Korean won pairs are moving the most volume in the last 24 hours.
Kimchi premium watchers Pull Bithumb's side of the price gap to compare against global exchanges.
Portfolio trackers Update a dashboard with the latest KRW closing prices for a watchlist of coins.

What it does

This Actor collects Bithumb Korea KRW market tickers and returns each one as a flat row with price, volume, and 24h change data.

  • πŸ“‹ Symbol filtering: request only the coins you care about, or leave empty to pull every KRW market.
  • πŸ“Š Flexible sorting: order by 24h trade value, 24h change rate, last price, or alphabetically by symbol.
  • πŸ”’ Row limit: set a hard cap on how many tickers the run returns, from 1 up to 1,000,000.

Results export to CSV, JSON, Excel, or XML, or straight from the API.

What you can do with Bithumb data

πŸ‡°πŸ‡· Build a kimchi premium monitor.

A quant pulls Bithumb KRW prices for BTC and ETH, joins them with Binance USD prices, and calculates the premium gap every 60 seconds.

πŸ“ˆ Rank the hottest KRW markets.

A trader runs the actor sorted by 24h trade value to see which altcoins are seeing a volume spike on Bithumb right now.

πŸ” Filter a watchlist of specific coins.

A portfolio manager passes a symbol list of 20 coins and gets back only those tickers, sorted by 24h change rate.

πŸ“¦ Feed a data pipeline.

A data engineer schedules the actor hourly, writes the flat CSV to cloud storage, and a downstream model consumes the latest Bithumb state.

Why choose this scraper

What you get
No API key needed Reads the same public endpoint the Bithumb web app uses, no registration required.
Flat, predictable schema Every row has the same columns. No nested JSON to unpack before analysis.
KRW market focus Returns only Korean won pairs, which is where the kimchi premium lives.
Sort before you scrape Order by volume or change so the most important tickers arrive first.

How it compares

This actor focuses on raw Bithumb KRW ticker collection with sorting and symbol filtering. The competitors below add kimchi premium calculation and multi-exchange data, which this actor leaves for you to compute or combine.

Feature ParseForge Kimchi Premium Tracker - Korea vs Global Crypto Arbitrage Korea Upbit & Bithumb Crypto - κΉ€μΉ˜ν”„λ¦¬λ―Έμ—„ API
Bithumb KRW ticker data Yes Yes Yes
Filter by coin symbol Yes Not listed Not listed
Sort by 24h trade value or change Yes Not listed Not listed
Calculated kimchi premium Not included Yes Yes
Multi-exchange data (Upbit + Bithumb) Bithumb only Yes Yes
Telegram alerts Not included Yes Not listed

Configure the run

Drive the Actor with an optional list of coin symbols, a sort order, and a maximum row count. Filters run server-side so only the tickers you want land in your dataset. The Input tab lists every parameter.

A first run with the defaults:

{
 "symbols": [],
 "maxItems": 10
}

A larger pull:

{
 "symbols": [],
 "maxItems": 200
}

Pricing

Pay-per-result: $0.0085 per result collected. You pay only for the results written to your dataset.

Results collected Approximate cost
100 results $0.85
1,000 results $8.50
10,000 results $85.00

New Apify accounts start with $5 in free credit.

Free users

Free-plan runs return up to 10 results as a preview. Upgrade your Apify plan to collect up to 1,000,000 results per run.

Run it

  1. Create a free Apify account with $5 in credit.
  2. Open the Bithumb Korea Market Tickers Scraper.
  3. Set your inputs and any filters, then click Start.
  4. Export the results as CSV, Excel, JSON, or XML from the Dataset tab.

Run it programmatically through the Apify API (run-sync-get-dataset-items) or the ApifyClient for JavaScript and Python.

Use with AI agents (MCP)

Give an AI agent live access to Bithumb through the Model Context Protocol. Add the Actor to Claude, Cursor, or any MCP client:

claude mcp add --transport http apify "https://mcp.apify.com?tools=parseforge/bithumb-korea-markets-scraper"

Then prompt it in plain language to run the scraper and read back the results.

Troubleshooting

Why am I getting an empty dataset?

Check your symbols filter. If you typed a symbol that does not exist on Bithumb or is not a KRW pair, no rows will match. Try running without any symbol filter first to see all available markets.

Why are the prices slightly different from the Bithumb website?

The actor reads a single snapshot from the public API. The website may update more frequently or show a mid-price. The data is accurate for the moment it was collected.

I set max items to 100 but only got 80 rows.

Bithumb lists a finite number of KRW markets. If there are only 80 pairs available at that moment, the actor returns all 80. It will never fabricate rows to hit your limit.

Can I get the order book depth with this actor?

No. This actor returns the ticker summary only: last price, 24h change, volume, high, and low. Order book snapshots would need a different endpoint.

The run timed out.

Bithumb's public API is generally fast. A timeout usually means a temporary network issue. Retry the run. If it persists, increase the run timeout in your Apify actor settings.

FAQ

Question Answer
Does this actor need a Bithumb API key? No. It reads the same public market data endpoint that the Bithumb website uses, so no account or key is required.
What markets does it return? It returns only KRW (Korean won) markets. BTC, ETH, XRP, and every other coin with a KRW pair on Bithumb is included.
Can I get USD or BTC markets? No. This actor is built for KRW markets only. If you need BTC-denominated pairs, a different endpoint would be required.
How fresh is the data? The actor hits Bithumb's live public ticker endpoint on every run, so you get the current state at the moment of collection.
Can I filter to only a few coins? Yes. Use the symbols input field to pass a list like BTC, ETH, XRP. Leave it empty to return every KRW market.
What does the sort order do? It tells the actor which field to order by before applying the max items limit. Sort by 24h trade value to get the highest-volume pairs first.
How many tickers can I pull in one run? You set the maximum. The input accepts any number from 1 to 1,000,000. The actual count depends on how many KRW pairs Bithumb lists at that moment.
Does this actor calculate the kimchi premium? No. It gives you the Bithumb side of the price. You need to combine it with a global exchange price yourself to compute the premium.
What export formats are supported? The dataset can be exported to CSV, JSON, Excel, or XML from the Apify platform after the run finishes.
Can I schedule this to run every minute? Yes. Apify's scheduler supports cron expressions, so you can run it as often as you need for near-real-time ticker collection.

Related actors

Browse the full ParseForge collection for more scrapers.

πŸ†˜ Need help? Email parseforge@protonmail.com with your run ID, your input, and what you expected.

⚠️ Disclaimer. This Actor is unofficial and is not affiliated with, endorsed by, or sponsored by Bithumb Korea Co., Ltd. It collects only publicly available data. You are responsible for using the collected data in compliance with the source's terms of service and applicable data-protection laws, including GDPR, CCPA, and PIPL. Do not use it to collect personal data unlawfully.

Input

FieldTypeWhat it doesDefault
symbols array Optional. Only return these coin symbols (for example BTC, ETH, XRP). Leave empty to return every KRW market. []
sortBy string (4 options) How to order the markets. accTradeValue24h
maxItems integer Maximum number of markets to collect per run. 10

Pricing

from $7.69 per 1,000 results

Charged forWhat it isPrice each
result Single result in the default dataset. $0.00769 to $0.0085

Tiered: the lower figure is the price on a higher Apify plan. Billing and the free credit live on Apify.

API

One POST returns the dataset directly. Same shape for every scraper in the library, so swapping the slug is the only change.

POST Β· run and get results
curl -X POST "https://api.apify.com/v2/acts/parseforge~bithumb-korea-markets-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "helloWorld": 123
  }'

Examples

Input that runs as-is.

input.json
{
  "helloWorld": 123
}

Reviews

No reviews yet. Be the first.

Issues

We build and maintain this scraper, so a problem with it comes to us. Report it on the Apify listing and the thread stays attached to the scraper where the next person can find it: open an issue.

Broken and urgent, or you would rather not post in public? Write to parseforge@protonmail.com and it reaches the people who wrote it.

Related scrapers

Run Bithumb Korea Market Tickers Scraper on Apify All scrapers