/v1/currencies
Other currencies vs the peso (EUR, BRL, CLP, UYU)
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}