/v1/meta
Spec
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/bankrates-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bankrates-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bankrates-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/bankrates-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "rates and moneysupply take no parameters. series takes indicator=<one of the listed ids> and months=N (1-240, default 24). All series are euro-area (U2), monthly, percent. Monthly data is briefly cached to protect the shared upstream.",
"source": "ECB Data Portal (data-api.ecb.europa.eu, MIR & BSI, monthly, live)",
"service": "bankrates-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/rates": "Latest euro-area bank lending & deposit rates (mortgage, consumer, business, deposit).",
"GET /v1/series": "Recent history of one indicator (indicator=mortgage_rate, months=24).",
"GET /v1/moneysupply": "Annual growth of M1, M2 and M3."
},
"indicators": [
"mortgage_rate",
"consumer_credit_rate",
"business_loan_rate",
"household_deposit_rate",
"m1_growth",
"m2_growth",
"m3_growth"
],
"description": "Euro-area bank lending/deposit rates and money-supply growth from the ECB Data Portal (no key, nothing stored). rates returns the latest euro-area mortgage, consumer-credit, business-loan and household-deposit rates (ECB MIR cost of borrowing). moneysupply returns the annual growth of M1, M2 and M3. series returns the recent history of any one indicator. The euro-area bank-rate / monetary-aggregate macro cut — distinct from the ECB policy-rate, yield-curve and €STR APIs, the FX-rate APIs and the country-specific central-bank APIs.",
"upstream_status": "ok",
"euro_mortgage_rate": 3.44
},
"meta": {
"timestamp": "2026-06-12T01:41:04.920Z",
"request_id": "11e1ff21-b9c8-40a3-ab45-04ee9398a953"
},
"status": "ok",
"message": "Meta",
"success": true
}