Μετάβαση στο περιεχόμενο
GET /v1/meta

Service metadata

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/cyprus-stock-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}