/v1/quote
Live quote for one or more Dublin 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/ireland-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ireland-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ireland-stock-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/ireland-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"count": 3,
"market": "DUB",
"quotes": [
{
"low": 25,
"high": 26.25,
"last": 25.09,
"name": "Ryanair Holdings PLC",
"open": 25.05,
"pe_ttm": 12.395,
"sector": "Transportation",
"symbol": "RYA",
"ticker": "EURONEXT:RYA",
"volume": 5388134,
"currency": "EUR",
"change_abs": 1.05,
"change_pct": 4.3677,
"market_cap": 26112319651
},
{
"low": 17.255,
"high": 17.64,
"last": 17.54,
"name": "Bank of Ireland Group PLC",
"open": 17.5,
"pe_ttm": 15.2748,
"sector": "Finance",
"symbol": "BIRG",
"ticker": "EURONEXT:BIRG",
"volume": 1941274,
"currency": "EUR",
"change_abs": 0.42,
"change_pct": 2.4533,
"market_cap": 16616303187.000002
},
{
"low": 75.1,
"high": 76.95,
"last": 75.8,
"name": "Kerry Group PLC",
"open": 76.95,
"pe_ttm": 18.9818,
"sector": "Consumer Non-Durables",
"symbol": "KRZ",
"ticker": "EURONEXT:KRZ",
"volume": 318317,
"currency": "EUR",
"change_abs": -0.25,
"change_pct": -0.3287,
"market_cap": 12063781684
}
]
},
"meta": {
"timestamp": "2026-06-15T02:09:53.867Z",
"request_id": "f834383a-4595-4139-9b83-8b84eb97ef84"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}