/v1/meta
Service metadata
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/argentina-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/argentina-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/argentina-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/argentina-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "argentinadatos.com (BCRA / INDEC / market data, live)",
"service": "argentina-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/inflation": "Latest monthly and interannual inflation, plus recent months (months=12).",
"GET /v1/indicators": "Combined snapshot — country risk, inflation, best deposit rate.",
"GET /v1/plazo-fijo": "30-day peso deposit rate at every bank, ranked (rate=clientes).",
"GET /v1/riesgo-pais": "Latest country risk (EMBI spread, bps) and recent history (days=30)."
},
"description": "Live Argentine macro-financial indicators from argentinadatos.com (official BCRA, INDEC and market data). Argentina is followed for three numbers above all: the riesgo-país (country risk — the JP Morgan EMBI spread over US Treasuries in basis points, the headline measure of sovereign default risk), inflation (monthly and year-over-year, among the world's highest), and the plazo-fijo rate (the annual interest banks pay on 30-day peso deposits). The riesgo-pais endpoint returns the latest spread and recent history; the inflation endpoint returns the latest monthly and interannual rate; the plazo-fijo endpoint compares the deposit rate at every bank; the indicators endpoint returns a combined snapshot. Live, no key, nothing stored. Distinct from its parallel-dollar feed and single central-bank APIs — this is Argentina's own country-risk, inflation and deposit-rate layer.",
"riesgo_pais_bps": 494,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-10T22:56:40.440Z",
"request_id": "373b1ab0-a83a-473f-88a1-ac4abbd0790a"
},
"status": "ok",
"message": "Meta",
"success": true
}