Skip to content
GET /v1/meta

Spec

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/ecb-api

It works. Grab an API key and use it in your project.

Get an API key

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

Example response

A real response from this endpoint, captured by the latest 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
}