/v1/currencies
BCRA master list of quoted currencies
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest 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",
…