/v1/currencies
Other currencies vs the peso (EUR, BRL, CLP, UYU)
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/dolar-api/v1/currencies" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/dolar-api/v1/currencies", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/dolar-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/dolar-api/v1/currencies",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"base": "ARS",
"count": 5,
"source": "dolarapi.com",
"currencies": [
{
"buy": 1405,
"name": "Dólar",
"sell": 1455,
"updated": "2026-06-10T16:59:00.000Z",
"currency": "USD",
"ars_per_unit": 1455
},
{
"buy": 1642.8614,
"name": "Euro",
"sell": 1656.8295,
"updated": "2026-06-10T16:59:00.000Z",
"currency": "EUR",
"ars_per_unit": 1656.8295
},
{
"buy": 276.4546,
"name": "Real Brasileño",
"sell": 276.6128,
"updated": "2026-06-10T16:59:00.000Z",
"currency": "BRL",
"ars_per_unit": 276.6128
},
{
"buy": 1.5691,
"name": "Peso Chileno",
"sell": 1.5691,
"updated": "2026-06-10T16:59:00.000Z",
"currency": "CLP",
"ars_per_unit": 1.5691
},
{
"buy": 35.3646,
"name": "Peso Uruguayo",
"sell": 35.3648,
"updated": "2026-06-10T16:59:00.000Z",
"currency": "UYU",
"ars_per_unit": 35.3648
}
]
},
"meta": {
"timestamp": "2026-06-10T22:57:56.318Z",
"request_id": "c954c001-00fb-49d9-98c6-36a38e378904"
},
"status": "ok",
"message": "Currencies retrieved successfully",
"success": true
}