Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/bcra-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

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

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "date": "2026-06-09",
        "source": "BCRA Estadísticas Cambiarias API (api.bcra.gob.ar, live)",
        "service": "bcra-api",
        "usd_ars": 1441,
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/rate": "One currency's peso rate, USD parity and inverse (currency=USD).",
            "GET /v1/rates": "BCRA official quote for every currency vs the peso (latest business day).",
            "GET /v1/convert": "Convert an amount between two currencies at BCRA rates (from=USD, to=EUR, amount=100).",
            "GET /v1/history": "A currency's official daily peso rate over a date range (currency=USD, from=2026-06-01, to=2026-06-09).",
            "GET /v1/currencies": "BCRA master list of quoted currencies."
        },
        "description": "Live official exchange-rate data for the Argentine peso (ARS) from the Central Bank of Argentina (Banco Central de la República Argentina, BCRA), via its public Estadísticas Cambiarias API. The rates endpoint returns the BCRA's official quote for every published currency against the peso for the latest business day, with the peso-per-unit rate and the currency's USD parity; the rate endpoint returns a single currency's peso rate, USD parity and the inverse; the history endpoint returns a currency's official daily peso rate over a date range; the currencies endpoint returns the BCRA's master list of quoted currencies; the convert endpoint converts an amount between any two quoted currencies (including ARS) at the BCRA's official rates, cross-computed through the peso. Live, no key, nothing stored. Distinct from the ECB, BCB, SNB, Bank of Canada and other central-bank feeds and from market mid-rates — this is the BCRA's own published peso quotes.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-10T13:59:41.486Z",
        "request_id": "16d46534-59f8-48de-959c-7fa6c8b8b178"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}