Korea Crypto Exchange Pulse — Upbit Bithumb Coinone Live Volume avatar

Korea Crypto Exchange Pulse — Upbit Bithumb Coinone Live Volume

Pricing

$1.00 / 1,000 token rankeds

Go to Apify Store
Korea Crypto Exchange Pulse — Upbit Bithumb Coinone Live Volume

Korea Crypto Exchange Pulse — Upbit Bithumb Coinone Live Volume

Real-time ticker volume, 24h price change, and KRW market depth for Korean crypto exchanges (Upbit, Bithumb, Coinone, Korbit). Detect kimchi premium, Korean retail demand spikes, and arbitrage windows. PPE $0.001/token.

Pricing

$1.00 / 1,000 token rankeds

Rating

0.0

(0)

Developer

Hojun Lee

Hojun Lee

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 days ago

Last modified

Categories

Share

Korea Crypto Exchange Pulse — Upbit, Bithumb, Coinone, Korbit Volume + Korea Premium Tracker

Korean crypto exchange data aggregator covering Upbit, Bithumb, Coinone, and Korbit — combined 24h KRW volume rankings, Upbit's official warning and caution flags, and early signals for kimchi premium spikes and pump candidates. The only actor that turns Upbit's regulatory flag system into a programmatic feed. No API key required. Runs on Apify's cloud in seconds.

Keywords: Korean crypto exchange · Upbit Bithumb data · Korea premium tracker · kimchi premium · Upbit caution flags · KRW volume ranking · Korean retail crypto · Upbit warning API


What does the Korea Exchange Pulse do?

The Korea Exchange Pulse actor aggregates live 24-hour KRW trading volume from all four major Korean crypto exchanges — Upbit, Bithumb, Coinone, and Korbit — and merges them into a single ranked dataset per token. It also fetches Upbit's official market-event flags for every listed token, covering five caution categories: GLOBAL_PRICE_DIFFERENCES (kimchi premium forming), TRADING_VOLUME_SOARING (pump candidate), DEPOSIT_AMOUNT_SOARING (retail onboarding surge), PRICE_FLUCTUATIONS (high volatility alert), and CONCENTRATION_OF_SMALL_ACCOUNTS (retail-driven pump pattern). Because Apify manages scheduling and infrastructure, you can turn this into an automated Korea premium tracker feed without running your own server.


Why use the Korea Exchange Pulse?

  • Korean retail is the most concentrated crypto market on earth. Altcoin volume on Upbit and Bithumb routinely runs 2–5x global venues during pump cycles. Monitoring this feed means you see the flows first.
  • Upbit's caution flags are quantitative, not opinion. They are raised when Upbit's own surveillance system crosses specific numerical thresholds — GLOBAL_PRICE_DIFFERENCES historically signals a kimchi premium of 5%+, which often precedes a 10–30% local pump within hours.
  • Early pump detection. The TRADING_VOLUME_SOARING + DEPOSIT_AMOUNT_SOARING flag combination is the classic pre-pump pattern. Filtering warningOnly: true surfaces only flagged tokens — typically 10–30 out of 260+ listed tokens at any given time.
  • Cross-exchange price comparison. Per-exchange price fields let you compare Upbit vs. Bithumb prices for the same token, revealing intra-Korean spread opportunities.
  • Straddle positioning. PRICE_FLUCTUATIONS flags mark elevated volatility periods — useful for options or volatility strategies.

How to use the Korea Exchange Pulse

  1. Open the actor on Apify Store and click Try for free.
  2. To find pump candidates immediately, set warningOnly: true and sortBy: "total_volume_desc" — this returns only Upbit-flagged tokens, ranked by combined KRW volume.
  3. Click Start — the actor runs in under 60 seconds.
  4. Access results via the Dataset tab as JSON or CSV, or query via the Apify API.
  5. Schedule hourly runs for continuous Korea premium tracking using Apify's built-in scheduler.

Input

FieldTypeDefaultDescription
includeUpbitbooleantrueInclude Upbit KRW market data
includeBithumbbooleantrueInclude Bithumb KRW market data
includeCoinonebooleantrueInclude Coinone KRW market data
includeKorbitbooleantrueInclude Korbit KRW market data
minTotalVolumeKrwinteger100,000,000Exclude tokens below this combined KRW volume (default ~$70 USD)
sortBystringtotal_volume_desctotal_volume_desc, upbit_volume_desc, symbol_asc
warningOnlybooleanfalseReturn only tokens with at least one Upbit caution or warning flag active
limitinteger100Maximum number of tokens returned
alertVolumeKrwinteger0Telegram alert when any token's 24h volume exceeds this KRW amount. 0 = disabled
telegramBotTokenstringTelegram bot token for alerts
telegramChatIdstringTelegram chat ID to receive alerts

Example — Pump scanner (Upbit flags only):

{"warningOnly": true, "sortBy": "total_volume_desc", "limit": 50}

Example — Full KRW volume ranking:

{"minTotalVolumeKrw": 1000000000, "sortBy": "total_volume_desc", "limit": 100}

Output

Each item represents one token with aggregated KRW volume across all four Korean exchanges plus Upbit's flag status.

[
{
"symbol": "XRP",
"korean_name": "리플",
"english_name": "Ripple",
"total_volume_24h_krw": 278857312982,
"upbit": {
"price": 1809,
"volume_krw": 178000000000,
"change_pct": 3.42
},
"bithumb": {"price": 1807, "volume_krw": 60000000000, "change_pct": 3.18},
"coinone": {"price": 1808, "volume_krw": 24000000000, "change_pct": 3.30},
"korbit": {"price": 1809, "volume_krw": 16857312982, "change_pct": 3.51},
"exchanges_listed": 4,
"upbit_warning": false,
"upbit_caution": {
"price_fluctuations": false,
"trading_volume_soaring": false,
"deposit_amount_soaring": false,
"global_price_differences": true,
"concentration_of_small_accounts": false
},
"any_upbit_flag": true
}
]

Data fields

FieldTypeDescription
symbolstringToken ticker symbol
korean_namestringKorean display name from Upbit
english_namestringEnglish name from Upbit
total_volume_24h_krwnumberCombined 24h KRW volume across all included exchanges
upbitobjectUpbit price, KRW volume, and 24h change percentage
bithumbobjectBithumb price, KRW volume, and 24h change (null if not listed)
coinoneobjectCoinone price, KRW volume, and 24h change (null if not listed)
korbitobjectKorbit price, KRW volume, and 24h change (null if not listed)
exchanges_listedintegerNumber of Korean exchanges where this token trades
upbit_warningbooleanFormal Upbit market warning is active
upbit_caution.price_fluctuationsbooleanUpbit PRICE_FLUCTUATIONS caution flag
upbit_caution.trading_volume_soaringbooleanUpbit TRADING_VOLUME_SOARING caution flag
upbit_caution.deposit_amount_soaringbooleanUpbit DEPOSIT_AMOUNT_SOARING caution flag
upbit_caution.global_price_differencesbooleanUpbit GLOBAL_PRICE_DIFFERENCES flag — kimchi premium signal
upbit_caution.concentration_of_small_accountsbooleanUpbit small-account concentration flag
any_upbit_flagbooleanConvenience boolean — true if any caution or warning is active

Cost estimation

This actor uses Pay-Per-Event (PPE) pricing — you only pay for tokens returned.

Use caseTokens returnedEstimated cost
Upbit-flagged tokens only (~15–30)20$0.020
Top 100 by KRW volume100$0.100
Full sweep (~262 KRW pairs)262$0.262
Hourly schedule, full sweep262 x 24~$6.29/day

Rate: $0.001 per token returned. For most monitoring use cases, running warningOnly: true keeps costs well under $1/day.


FAQ

Do I need API keys for Upbit, Bithumb, or other Korean exchanges? No. All four exchanges provide public ticker and market-info endpoints that require no authentication. The actor uses only public APIs — no account, no key, no rate-limit risk at single-actor scale.

How accurate are the Upbit caution flags? The flags are Upbit's own official regulatory tags fetched directly from their /v1/market/all?isDetails=true endpoint. They reflect Upbit's internal surveillance system, which applies quantitative thresholds. The actor does not interpret or infer flags — it reports exactly what Upbit's API returns.

Can I use this as a kimchi premium tracker? Yes — the global_price_differences caution flag is the most direct programmatic signal for kimchi premium formation. For the actual premium percentage (KRW price vs. global USD price), pair this actor with the Kimchi Premium Tracker, which computes the exact spread.

Disclaimer: This actor aggregates publicly available market data from Korean exchange APIs. Upbit caution flags are reproduced as-is from Upbit's official API and do not represent analysis or recommendations from the actor author. Past flag patterns do not guarantee future price movements. This is not financial advice.



Live Sample Run

A real run executed on 2026-06-10 with default inputs:

FieldValue
Items in dataset15
Dataset (JSON)https://api.apify.com/v2/datasets/KUIFHe8DmJCp4vdfQ/items?clean=1&format=json
Dataset (CSV)https://api.apify.com/v2/datasets/KUIFHe8DmJCp4vdfQ/items?clean=1&format=csv
Run summary (KVS)https://api.apify.com/v2/key-value-stores/Pj2U3Fhr6yZn4WuCe/records/SUMMARY
Run detailshttps://api.apify.com/v2/actor-runs/7gzQAuUeBoHPamzgO

Feedback

Leave a review on Apify Store