/v1/meta
Service metadata
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/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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}