Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

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

Eigene Header (optional)
api.oanor.com/estr-api

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "source": "ECB Data Portal (data-api.ecb.europa.eu, live)",
        "service": "estr-api",
        "estr_pct": 1.93,
        "endpoints": {
            "GET /v1/estr": "Latest €STR rate plus full daily statistics (volume, banks, trades, percentiles, concentration).",
            "GET /v1/meta": "This document.",
            "GET /v1/policy": "ECB key-rate corridor (deposit, main refi, marginal lending) and €STR position.",
            "GET /v1/history": "€STR rate over recent days (days=30, max 365)."
        },
        "estr_date": "2026-06-09",
        "description": "Live euro short-term rate (€STR) data from the European Central Bank. The €STR is the euro area's overnight risk-free benchmark, computed daily by the ECB from real unsecured borrowing of euro-area banks; it underpins euro derivatives and floating-rate contracts (the EURIBOR successor). The estr endpoint returns the latest rate plus its full daily statistics — underlying volume, number of reporting banks and trades, 25th/75th rate percentiles and top-5 bank concentration; the policy endpoint returns the ECB key-rate corridor (deposit facility, main refinancing, marginal lending) and where €STR sits inside it; the history endpoint returns the €STR rate over recent days. Live, no key, nothing stored. Distinct from FX reference feeds, bond yield curves and money-market futures — this is the euro overnight risk-free rate and ECB policy corridor.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T22:57:02.983Z",
        "request_id": "f32b40f5-642f-4201-9641-b226e9f21da4"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}