Skip to content
GET /v1/market

Market summary

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/cyprus-stock-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}