/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/cyprus-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cyprus-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cyprus-stock-api/v1/meta");
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/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "Cyprus Stock Exchange API",
"market": "Cyprus Stock Exchange (CSE)",
"currency": "EUR",
"endpoints": [
{
"path": "/v1/quote",
"description": "Quotes for specific symbols (?symbols=BOCH,EUROBCY)"
},
{
"path": "/v1/screener",
"description": "Ranked stocks (?sort=market_cap_basic|change|volume&order=desc&limit=)"
},
{
"path": "/v1/search",
"description": "Search listings by company name (?q=bank)"
},
{
"path": "/v1/market",
"description": "Market summary: advancers/decliners, total cap, top movers"
},
{
"path": "/v1/meta",
"description": "This metadata document"
}
],
"namespace": "CSECY",
"disclaimer": "Unofficial market data via the public TradingView screener. Not affiliated with the Cyprus Stock Exchange or TradingView. Delayed/indicative data; not investment advice.",
"description": "Live equity quotes, a ranked screener, company search and a market summary for the Cyprus Stock Exchange (CSE), priced in EUR."
},
"meta": {
"timestamp": "2026-06-15T11:15:19.605Z",
"request_id": "45b498a6-4eb8-4e98-9c2a-a06e77b75c6f"
},
"status": "ok",
"message": "Meta",
"success": true
}