Convert EUR to ARS
Euro → Argentine Peso
1 EUR = 1,733.0811 ARS(1 ARS = 0.000577007 EUR)
Currency converter
1 EUR =
1,733.0811 ARS
EUR to ARS: last 30 days
Over the last 30 days, 1 EUR traded between 1,723.0897 and 1,761.1873 ARS, averaging 1,745.6208 ARS. The EUR/ARS rate is down 1.56% since 2026-08-28.
- 30-day high
- 1,761.1873
- 2026-09-09
- 30-day low
- 1,723.0897
- 2026-09-24
- 30-day average
- 1,745.6208
- Days with data: 30
- 30-day change
- -1.56%
- since 2026-08-28
1,761.1873
1,723.08972026-08-28 → 2026-09-26
| Date | 1 EUR in ARS | Daily change |
|---|---|---|
| 2026-09-26 | 1,733.0811 | 0.00% |
| 2026-09-25 | 1,733.0811 | +0.58% |
| 2026-09-24 | 1,723.0897 | -0.28% |
| 2026-09-23 | 1,727.8915 | -0.44% |
| 2026-09-22 | 1,735.4603 | +0.07% |
| 2026-09-21 | 1,734.2933 | -0.09% |
| 2026-09-20 | 1,735.8014 | -0.15% |
| 2026-09-19 | 1,738.3243 | +0.45% |
| 2026-09-18 | 1,730.4572 | -0.37% |
| 2026-09-17 | 1,736.8063 | -0.09% |
| 2026-09-16 | 1,738.4552 | -0.09% |
| 2026-09-15 | 1,740.0382 | -0.44% |
| 2026-09-14 | 1,747.6493 | -0.07% |
| 2026-09-13 | 1,748.8052 | -0.00% |
| 2026-09-12 | 1,748.8471 | -0.27% |
| Date | 1 EUR in ARS | Daily change |
|---|---|---|
| 2026-09-11 | 1,753.4974 | -0.28% |
| 2026-09-10 | 1,758.4038 | -0.16% |
| 2026-09-09 | 1,761.1873 | +0.31% |
| 2026-09-08 | 1,755.6967 | +0.10% |
| 2026-09-07 | 1,753.9099 | +0.04% |
| 2026-09-06 | 1,753.1913 | +0.04% |
| 2026-09-05 | 1,752.4883 | -0.04% |
| 2026-09-04 | 1,753.1135 | -0.09% |
| 2026-09-03 | 1,754.7306 | +0.19% |
| 2026-09-02 | 1,751.4334 | +0.16% |
| 2026-09-01 | 1,748.5554 | -0.01% |
| 2026-08-31 | 1,748.7359 | -0.32% |
| 2026-08-30 | 1,754.3156 | -0.13% |
| 2026-08-29 | 1,756.652 | -0.23% |
| 2026-08-28 | 1,760.6308 | — |
EUR to ARS conversion table
1 EUR1,733.0811 ARS
5 EUR8,665.4054 ARS
10 EUR17,330.811 ARS
25 EUR43,327.027 ARS
50 EUR86,654.054 ARS
100 EUR173,308.11 ARS
500 EUR866,540.54 ARS
1,000 EUR1,733,081.1 ARS
5,000 EUR8,665,405.4 ARS
10,000 EUR17,330,811 ARS
Get the EUR/ARS rate in your app
One GET request returns the latest EUR → 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/EUR/ARS"fetch('https://rate-api.com/api/v1/pair/EUR/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/ARS');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "ARS"
},
"rate": 1733.0811,
"timestamp": 1790437575,
"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 EURArgentine Peso → Euro0.00057701Convert EUR to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.