Zum Inhalt springen
GET /v1/meta

Market metadata & endpoint guide

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/denmark-stock-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/denmark-stock-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/denmark-stock-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/denmark-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/denmark-stock-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "market": "Nasdaq Copenhagen (OMX Copenhagen)",
        "source": "TradingView screener (denmark market), keyless",
        "country": "Denmark",
        "indices": [
            "OMXC25",
            "OMXCPI"
        ],
        "currency": "DKK",
        "examples": {
            "index": "/v1/index",
            "quote": "/v1/quote?symbols=NOVO_B,DSV,MAERSK_B",
            "screener": "/v1/screener?sort=change&order=desc&limit=10"
        },
        "endpoints": {
            "/v1/index": "Copenhagen index family (OMXC25, OMXCPI)",
            "/v1/quote": "live quote for one or more Copenhagen stocks by ticker (symbols=NOVO_B,DSV,MAERSK_B)",
            "/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
        },
        "cache_ttl_ms": 20000
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:09.985Z",
        "request_id": "9909bd65-a6ba-4358-a639-4de108004c7c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}