Convert ARS to EUR
Argentine Peso → Euro
1 ARS = 0.000577007 EUR(1 EUR = 1,733.0811 ARS)
Currency converter
1 ARS =
0.00057701 EUR
ARS to EUR: last 30 days
Over the last 30 days, 1 ARS traded between 0.0005678 and 0.00058035 EUR, averaging 0.00057288 EUR. The ARS/EUR rate is up 1.59% since 2026-08-28.
- 30-day high
- 0.00058035
- 2026-09-24
- 30-day low
- 0.0005678
- 2026-09-09
- 30-day average
- 0.00057288
- Days with data: 30
- 30-day change
- +1.59%
- since 2026-08-28
0.00058035
0.00056782026-08-28 → 2026-09-26
| Date | 1 ARS in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.00057701 | 0.00% |
| 2026-09-25 | 0.00057701 | -0.58% |
| 2026-09-24 | 0.00058035 | +0.28% |
| 2026-09-23 | 0.00057874 | +0.44% |
| 2026-09-22 | 0.00057622 | -0.07% |
| 2026-09-21 | 0.0005766 | +0.09% |
| 2026-09-20 | 0.0005761 | +0.15% |
| 2026-09-19 | 0.00057527 | -0.45% |
| 2026-09-18 | 0.00057788 | +0.37% |
| 2026-09-17 | 0.00057577 | +0.09% |
| 2026-09-16 | 0.00057522 | +0.09% |
| 2026-09-15 | 0.0005747 | +0.44% |
| 2026-09-14 | 0.0005722 | +0.07% |
| 2026-09-13 | 0.00057182 | +0.00% |
| 2026-09-12 | 0.00057181 | +0.27% |
| Date | 1 ARS in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.00057029 | +0.28% |
| 2026-09-10 | 0.0005687 | +0.16% |
| 2026-09-09 | 0.0005678 | -0.31% |
| 2026-09-08 | 0.00056957 | -0.10% |
| 2026-09-07 | 0.00057015 | -0.04% |
| 2026-09-06 | 0.00057039 | -0.04% |
| 2026-09-05 | 0.00057062 | +0.04% |
| 2026-09-04 | 0.00057041 | +0.09% |
| 2026-09-03 | 0.00056989 | -0.19% |
| 2026-09-02 | 0.00057096 | -0.16% |
| 2026-09-01 | 0.0005719 | +0.01% |
| 2026-08-31 | 0.00057184 | +0.32% |
| 2026-08-30 | 0.00057002 | +0.13% |
| 2026-08-29 | 0.00056926 | +0.23% |
| 2026-08-28 | 0.00056798 | — |
ARS to EUR conversion table
1 ARS0.00057701 EUR
5 ARS0.002885 EUR
10 ARS0.0057701 EUR
25 ARS0.014425 EUR
50 ARS0.02885 EUR
100 ARS0.057701 EUR
500 ARS0.2885 EUR
1,000 ARS0.57701 EUR
5,000 ARS2.885 EUR
10,000 ARS5.7701 EUR
Get the ARS/EUR rate in your app
One GET request returns the latest ARS → EUR 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/ARS/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/ARS/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ARS = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ARS/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ARS = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ARS/EUR?precision=6');
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['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "ARS",
"to": "EUR"
},
"rate": 0.000577,
"timestamp": 1790435055,
"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
EUR to ARSEuro → Argentine Peso1,733.0811Convert ARS to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.