/v1/meta
Spec
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/ecb-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ecb-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ecb-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/ecb-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 SDMX API (live)",
"service": "ecb-api",
"endpoints": {
"GET /v1/estr": "€STR euro short-term rate, current + recent history.",
"GET /v1/meta": "This document.",
"GET /v1/key_rates": "ECB policy rates: deposit facility, MRO, marginal lending (history=N for past values).",
"GET /v1/yield_curve": "Euro-area AAA government bond spot yield curve (3M–30Y) + 10y-1y spread."
},
"description": "Live official euro-area monetary data from the ECB Data Portal: the ECB's three policy interest rates (deposit facility, main refinancing operations, marginal lending facility) with effective dates and history; €STR, the euro short-term overnight benchmark, with its recent path; and the euro-area AAA government bond spot-rate yield curve from 3 months to 30 years with the 10y-1y slope. Live, no key, nothing stored. Distinct from exchange-rate APIs and from the Bank of Canada and US-Treasury APIs — this is the ECB's policy rates, €STR and euro yield curve.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T11:39:45.104Z",
"request_id": "b4ca9010-37dd-4368-b9c8-28e37de2980f"
},
"status": "ok",
"message": "Meta",
"success": true
}