Naar de inhoud
GET /v1/currencies

BCRA master list of quoted currencies

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/bcra-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 44,
        "source": "Banco Central de la República Argentina",
        "currencies": [
            {
                "name": "Peso",
                "currency": "ARS"
            },
            {
                "name": "Chelines Austriacos",
                "currency": "ATS"
            },
            {
                "name": "Dolar Australia",
                "currency": "AUD"
            },
            {
                "name": "Florin (Antillas Holandesas)",
                "currency": "AWG"
            },
            {
                "name": "Bolivianos",
                "currency": "BOB"
            },
            {
                "name": "Real",
                "currency": "BRL"
            },
            {
                "name": "Dolar Canadien.",
                "currency": "CAD"
            },
            {
                "name": "Franco Suizo",
                "currency": "CHF"
            },
            {
                "name": "Peso Chileno",
                "currency": "CLP"
            },
            {
                "name": "Yuan Cnh Renminbi Off Shore",
                "currency": "CNH"
            },
            {
                "name": "Yuan Cny Renminbi",
                "currency": "CNY"
            },
            {
                "name": "Colombianos",
                "currency": "COP"
            },
            {
                "name": "Coronas Checas",
                "currency": "CZK"
            },
            {
                "name": "Marco Aleman",
                "currency": "DEM"
            },
            {
                "name": "Coronas Danesas",
                "currency": "DKK"
            },
            {
                "name": "Peseta",
                "currency": "ESP"
            },
            {
                "name": "Euro",
                "currency": "EUR"
            },
            {
                "name": "Libra Esterlina",
                "currency": "GBP"
            },
            {
                "name": "Dolar Hong Kong",
                "currency": "HKD"
            },
            {
                "name": "Libra Israeli",
                "currency": "ILS"
            },
            {
                "name": "Rupia (India)",
                "currency": "INR"
            },
            {
                "name": "Lira Italiana",
                "currency": "ITL"
            },
            {
                "name": "Yens",
                "currency": "JPY"
            },
            {
                "name": "Peso Mexicano",
                "currency": "MXP"
            },
            {
                "name": "Cordoba Nicaraguense",
                "currency": "NIO"
            },
            {
                "name": "Cordobas",
                "currency": "NIO"
            },
            {
                "name": "Coronas Noruega",
                "currency": "NOK"
            },
            {
                "name": "Dolar Neozelandes",
        
…