Convert AFN to EUR
Afghan Afghani → Euro
1 AFN = 0.013701 EUR(1 EUR = 72.987348 AFN)
Currency converter
1 AFN =
0.013701 EUR
AFN to EUR: last 30 days
Over the last 30 days, 1 AFN traded between 0.013022 and 0.013749 EUR, averaging 0.013304 EUR. The AFN/EUR rate is up 5.22% since 2026-08-28.
- 30-day high
- 0.013749
- 2026-09-24
- 30-day low
- 0.013022
- 2026-08-28
- 30-day average
- 0.013304
- Days with data: 30
- 30-day change
- +5.22%
- since 2026-08-28
0.013749
0.0130222026-08-28 → 2026-09-26
| Date | 1 AFN in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.013701 | 0.00% |
| 2026-09-25 | 0.013701 | -0.35% |
| 2026-09-24 | 0.013749 | +1.93% |
| 2026-09-23 | 0.013489 | +0.21% |
| 2026-09-22 | 0.013461 | +0.42% |
| 2026-09-21 | 0.013404 | -0.56% |
| 2026-09-20 | 0.01348 | -1.66% |
| 2026-09-19 | 0.013707 | +2.11% |
| 2026-09-18 | 0.013425 | -0.03% |
| 2026-09-17 | 0.013429 | +0.63% |
| 2026-09-16 | 0.013345 | -0.07% |
| 2026-09-15 | 0.013354 | -0.59% |
| 2026-09-14 | 0.013433 | +0.23% |
| 2026-09-13 | 0.013403 | +2.23% |
| 2026-09-12 | 0.01311 | -0.64% |
| Date | 1 AFN in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.013194 | +0.64% |
| 2026-09-10 | 0.01311 | -0.44% |
| 2026-09-09 | 0.013168 | +0.10% |
| 2026-09-08 | 0.013155 | +0.91% |
| 2026-09-07 | 0.013037 | -2.24% |
| 2026-09-06 | 0.013336 | +1.90% |
| 2026-09-05 | 0.013088 | +0.22% |
| 2026-09-04 | 0.013059 | -0.22% |
| 2026-09-03 | 0.013088 | -0.18% |
| 2026-09-02 | 0.013112 | +0.29% |
| 2026-09-01 | 0.013074 | -0.85% |
| 2026-08-31 | 0.013187 | +0.02% |
| 2026-08-30 | 0.013184 | +0.54% |
| 2026-08-29 | 0.013113 | +0.70% |
| 2026-08-28 | 0.013022 | — |
AFN to EUR conversion table
1 AFN0.013701 EUR
5 AFN0.068505 EUR
10 AFN0.13701 EUR
25 AFN0.34253 EUR
50 AFN0.68505 EUR
100 AFN1.3701 EUR
500 AFN6.8505 EUR
1,000 AFN13.701 EUR
5,000 AFN68.505 EUR
10,000 AFN137.0101 EUR
Get the AFN/EUR rate in your app
One GET request returns the latest AFN → 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/AFN/EUR"fetch('https://rate-api.com/api/v1/pair/AFN/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AFN = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AFN/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AFN = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AFN/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AFN = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "AFN",
"to": "EUR"
},
"rate": 0.0137,
"timestamp": 1790432139,
"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 AFNEuro → Afghan Afghani72.9873Convert AFN to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.