Korbit Data Parser & API
Korbit is South Korea’s first cryptocurrency exchange (founded 2013) and a leading KRW-based trading venue, and StockAPIS extracts its real-time market data — Korean won spot prices, order book depth, OHLCV candles, recent trades and 24h statistics across 20+ KRW pairs — through a single REST API. Korbit offers an official public API, and StockAPIS normalizes it to the same schema you use for every other exchange, so you query Korbit, Binance and Coinbase the same way without maintaining separate integrations.
| Type | Crypto exchange (KRW spot) |
|---|---|
| HQ | South Korea (Seoul) |
| Owner | Korbit Inc. (NXC / Nexon affiliate) |
| Asset classes | Crypto spot, KRW trading pairs |
| Coverage | 20+ KRW trading pairs |
| Scale | Top-tier South Korean exchange; first Korean crypto exchange (est. 2013) |
| API access | Official API |
| Parse priority | ★★★☆☆ |
| Official site | www.korbit.co.kr |
Platform Overview
Market Position
- South Korea’s first cryptocurrency exchange, operating since 2013
- A core KRW (Korean won) trading venue, affiliated with the NXC / Nexon group
- 20+ trading pairs focused on the Korean retail and institutional market
- Official public REST + WebSocket API, complemented by StockAPIS’s unified normalization
Data Coverage
StockAPIS exposes the full Korbit market surface:
- Spot market data — real-time last price, 24h volume, high/low and percent change for KRW pairs
- Order book — live bid/ask depth snapshots with configurable limits and spread data
- Trades — recent trade history with timestamps, prices and volumes
- OHLCV / candles — candlestick data across intervals for historical and technical analysis
- 24h statistics — rolling daily stats per symbol for the Korean market
- KRW pairs — Korean won market specifics and local liquidity insight
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Real-time ticker for a Korbit KRW pair
btc = client.korbit.get_market_data(symbol="btc_krw")
print(f"Bitcoin: ₩{btc['last']} · 24h vol {btc['volume']}")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Live order book (top 100 levels)
const book = await client.korbit.getOrderBook({ symbol: "btc_krw", limit: 100 });
console.log(book.bids[0], book.asks[0]);Sample API Response
{
"success": true,
"data": {
"symbol": "btc_krw",
"last": "60500000",
"bid": "60499900",
"ask": "60500100",
"high": "61000000",
"low": "59000000",
"volume": "25000.5",
"change": "500000",
"changePercent": "0.83",
"timestamp": 1640995200000
},
"metadata": { "source": "korbit", "timestamp": "2024-01-15T10:30:00.000Z" }
}Use Cases
- Korean market arbitrage — compare Korbit KRW prices against global venues to track the “kimchi premium” on one schema
- Algorithmic trading — real-time price and order-book feeds for market-making and automated KRW strategies
- Quant research — historical candles and trades for backtesting Korean-market signals
- Portfolio & risk — real-time marks for valuation, P&L and exposure monitoring on KRW pairs
Frequently Asked Questions
Does Korbit have an official API? Yes — Korbit provides a public REST and WebSocket API. StockAPIS wraps it in a unified schema so Korbit data matches every other source you pull.
What data can I get from Korbit through StockAPIS? Real-time KRW spot prices, full order books, recent trades, OHLCV candles and 24h statistics across 20+ Korean won trading pairs.
Why use Korbit data specifically? Korbit is one of South Korea’s primary KRW exchanges, making it a key reference for Korean-market pricing, local liquidity and cross-border arbitrage analysis.