Convert USD to ARS
US Dollar → Argentine Peso
1 USD = 1,519.8466 ARS(1 ARS = 0.000657961 USD)
Currency converter
1 USD =
1,519.8466 ARS
USD to ARS: last 30 days
Over the last 30 days, 1 USD traded between 1,506.7642 and 1,519.8466 ARS, averaging 1,511.4706 ARS. The USD/ARS rate is up 0.51% since 2026-08-28.
- 30-day high
- 1,519.8466
- 2026-09-25
- 30-day low
- 1,506.7642
- 2026-08-30
- 30-day average
- 1,511.4706
- Days with data: 30
- 30-day change
- +0.51%
- since 2026-08-28
1,519.8466
1,506.76422026-08-28 → 2026-09-26
| Date | 1 USD in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 1,519.8466 | 0.00% |
| 2026-09-25 | 1,519.8466 | +0.26% |
| 2026-09-24 | 1,515.8702 | +0.11% |
| 2026-09-23 | 1,514.2332 | +0.02% |
| 2026-09-22 | 1,513.9635 | +0.30% |
| 2026-09-21 | 1,509.3902 | -0.35% |
| 2026-09-20 | 1,514.6603 | -0.15% |
| 2026-09-19 | 1,516.8618 | +0.45% |
| 2026-09-18 | 1,509.997 | -0.18% |
| 2026-09-17 | 1,512.7583 | +0.39% |
| 2026-09-16 | 1,506.8582 | -0.07% |
| 2026-09-15 | 1,507.9693 | -0.33% |
| 2026-09-14 | 1,512.9924 | +0.29% |
| 2026-09-13 | 1,508.6243 | -0.00% |
| 2026-09-12 | 1,508.6604 | -0.27% |
| Date | 1 USD in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 1,512.6721 | -0.07% |
| 2026-09-10 | 1,513.7746 | +0.15% |
| 2026-09-09 | 1,511.4862 | -0.01% |
| 2026-09-08 | 1,511.7075 | +0.17% |
| 2026-09-07 | 1,509.1343 | +0.04% |
| 2026-09-06 | 1,508.5159 | +0.04% |
| 2026-09-05 | 1,507.911 | -0.04% |
| 2026-09-04 | 1,508.4489 | -0.15% |
| 2026-09-03 | 1,510.7529 | -0.13% |
| 2026-09-02 | 1,512.7306 | +0.27% |
| 2026-09-01 | 1,508.6711 | +0.04% |
| 2026-08-31 | 1,508.0574 | +0.09% |
| 2026-08-30 | 1,506.7642 | -0.13% |
| 2026-08-29 | 1,508.7709 | -0.23% |
| 2026-08-28 | 1,512.1882 | — |
USD to ARS conversion table
1 USD1,519.8466 ARS
5 USD7,599.233 ARS
10 USD15,198.466 ARS
25 USD37,996.165 ARS
50 USD75,992.33 ARS
100 USD151,984.66 ARS
500 USD759,923.3 ARS
1,000 USD1,519,846.6 ARS
5,000 USD7,599,233 ARS
10,000 USD15,198,466 ARS
Get the USD/ARS rate in your app
One GET request returns the latest USD → ARS rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/ARS"fetch('https://rate-api.com/api/v1/pair/USD/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ARS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ARS"
},
"rate": 1519.8466,
"timestamp": 1790447428,
"date": "2026-09-26"
}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.
Related conversions
ARS to USDArgentine Peso → US Dollar0.00065796Convert USD to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.