Μετάβαση στο περιεχόμενο
GET /v1/indicators

Combined macro snapshot

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/argentina-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/argentina-api/v1/indicators" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/argentina-api/v1/indicators", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/argentina-api/v1/indicators");
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/indicators",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "source": "argentinadatos.com (BCRA/INDEC)",
        "country": "Argentina",
        "riesgo_pais_bps": 494,
        "riesgo_pais_date": "2026-06-08",
        "best_plazo_fijo_pct": 23.5,
        "best_plazo_fijo_bank": "CRÉDITO REGIONAL COMPAÑÍA FINANCIERA S.A.U.",
        "inflation_monthly_pct": 2.6,
        "inflation_monthly_period": "2026-04-30",
        "inflation_interannual_pct": 32.4
    },
    "meta": {
        "timestamp": "2026-06-10T22:56:40.353Z",
        "request_id": "fc3913d6-c9e0-4ba4-93d5-37117e4c9c80"
    },
    "status": "ok",
    "message": "Indicators retrieved successfully",
    "success": true
}