/v1/market
Market summary
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/cyprus-stock-api/v1/market" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cyprus-stock-api/v1/market", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cyprus-stock-api/v1/market");
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/cyprus-stock-api/v1/market",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"market": "Cyprus Stock Exchange",
"currency": "EUR",
"listings": 32,
"advancers": 11,
"decliners": 15,
"top_loser": {
"symbol": "CSECY:TOP",
"company": "Top Kinisis Travel Public Limited",
"change_percent": -9.696969696969706
},
"unchanged": 6,
"top_gainer": {
"symbol": "CSECY:MINE",
"company": "Minerva Insurance Co Public Ltd.",
"change_percent": 7.894736842105271
},
"most_active": {
"symbol": "CSECY:ERME",
"volume": 136000,
"company": "Ermes Department Stores PLC"
},
"total_market_cap": 20878580514
},
"meta": {
"timestamp": "2026-06-15T11:15:19.511Z",
"request_id": "186e69a2-695d-4404-8604-f8d3618f7a53"
},
"status": "ok",
"message": "Market summary retrieved successfully",
"success": true
}