Ir al contenido
GET /v1/meta

Service metadata

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/argentina-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "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
}