/v1/quote
Live quote for one or more stocks
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/krx-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/krx-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/krx-api/v1/quote");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/krx-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "The live quote for one or more KRX-listed stocks — price, open/high/low, change, volume, traded value and market cap (in KRW) each. Pass codes (comma-separate up to 10, e.g. 005930,000660 for Samsung and SK Hynix).",
"count": 2,
"quotes": [
{
"low": 335000,
"code": "005930",
"high": 344500,
"isin": "KR7005930003",
"name": "삼성전자",
"open": 342500,
"price": 336500,
"change": 14000,
"volume": 9539232,
"currency": "KRW",
"market_cap": 1967272751592000,
"market_status": "OPEN",
"trading_value": 3231798000000,
"change_percent": 4.34
},
{
"low": 2265000,
"code": "000660",
"high": 2322000,
"isin": "KR7000660001",
"name": "SK하이닉스",
"open": 2283000,
"price": 2279000,
"change": 129000,
"volume": 1798439,
"currency": "KRW",
"market_cap": 1624248689835000,
"market_status": "OPEN",
"trading_value": 4128786000000,
"change_percent": 6
}
],
"source": "KRX (Naver Finance)"
},
"meta": {
"timestamp": "2026-06-15T02:10:55.281Z",
"request_id": "9319a592-8204-4c43-93d9-cfab50236c84"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}