/v1/screener
Rank local primary listings
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/ireland-stock-api/v1/screener" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ireland-stock-api/v1/screener", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ireland-stock-api/v1/screener");
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/screener",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"sort": "market_cap",
"count": 17,
"order": "desc",
"market": "DUB",
"results": [
{
"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": 10.145,
"high": 10.38,
"last": 10.355,
"name": "AIB Group PLC",
"open": 10.24,
"pe_ttm": 11.043,
"sector": "Finance",
"symbol": "A5G",
"ticker": "EURONEXT:A5G",
"volume": 4115472,
"currency": "EUR",
"change_abs": 0.275,
"change_pct": 2.7282,
"market_cap": 21769503121
},
{
"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": 82.8,
"high": 84.5,
"last": 84.05,
"name": "Kingspan Group PLC",
"open": 83.35,
"pe_ttm": 22.8757,
"sector": "Non-Energy Minerals",
"symbol": "KRX",
"ticker": "EURONEXT:KRX",
"volume": 270140,
"currency": "EUR",
"change_abs": 2.5,
"change_pct": 3.0656,
"market_cap": 15158004315
},
{
"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
},
{
"low": 21.62,
"high": 22.34,
"last": 21.88,
"name": "Glanbia PLC",
"open": 22
…