Argentine Peso (ARS) $
Argentine Peso exchange rates against major world currencies, checked hourly and updated as sources publish.
1 ARS = 0.000657961 USD
1 ARS in other currencies
ARS to USDUS Dollar0.00065796ARS to EUREuro0.00057701ARS to GBPBritish Pound0.00049649ARS to JPYJapanese Yen0.10369ARS to CNYChinese Yuan0.004417ARS to CADCanadian Dollar0.00093054ARS to AUDAustralian Dollar0.00093591ARS to CHFSwiss Franc0.00054498ARS to INRIndian Rupee0.063044ARS to RUBRussian Ruble0.055935
Convert to ARS
USD to ARSUS Dollar1,519.8466EUR to ARSEuro1,733.0811GBP to ARSBritish Pound2,014.1566JPY to ARSJapanese Yen9.6443CNY to ARSChinese Yuan226.3956CAD to ARSCanadian Dollar1,074.6457AUD to ARSAustralian Dollar1,068.484CHF to ARSSwiss Franc1,834.9191INR to ARSIndian Rupee15.8619RUB to ARSRussian Ruble17.8778
Get ARS rates in your app
One GET request returns every rate against ARS as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=ARS"fetch('https://rate-api.com/api/v1/latest?base=ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ARS = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ARS = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=ARS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ARS = {$data['rates']['USD']} USD\n";Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.