Convert EUR to NGN
Euro → Nigerian Naira
1 EUR = 1,513.0194 NGN(1 NGN = 0.00066093 EUR)
Currency converter
1 EUR =
1,513.0194 NGN
EUR to NGN: last 30 days
Over the last 30 days, 1 EUR traded between 1,507.9819 and 1,563.5352 NGN, averaging 1,535.0507 NGN. The EUR/NGN rate is down 3.20% since 2026-08-28.
- 30-day high
- 1,563.5352
- 2026-08-29
- 30-day low
- 1,507.9819
- 2026-09-24
- 30-day average
- 1,535.0507
- Days with data: 30
- 30-day change
- -3.20%
- since 2026-08-28
1,563.5352
1,507.98192026-08-28 → 2026-09-26
| Date | 1 EUR in NGN | Daily change |
|---|---|---|
| 2026-09-26 | 1,513.0194 | 0.00% |
| 2026-09-25 | 1,513.0194 | +0.33% |
| 2026-09-24 | 1,507.9819 | -0.26% |
| 2026-09-23 | 1,511.8559 | -0.56% |
| 2026-09-22 | 1,520.3464 | -0.56% |
| 2026-09-21 | 1,528.9051 | +0.17% |
| 2026-09-20 | 1,526.2829 | -0.00% |
| 2026-09-19 | 1,526.3092 | -0.01% |
| 2026-09-18 | 1,526.5174 | -0.01% |
| 2026-09-17 | 1,526.7349 | -0.35% |
| 2026-09-16 | 1,532.1617 | +0.28% |
| 2026-09-15 | 1,527.8659 | -0.19% |
| 2026-09-14 | 1,530.811 | -0.48% |
| 2026-09-13 | 1,538.1297 | +0.03% |
| 2026-09-12 | 1,537.6626 | -0.01% |
| Date | 1 EUR in NGN | Daily change |
|---|---|---|
| 2026-09-11 | 1,537.7863 | +0.05% |
| 2026-09-10 | 1,537.0725 | -0.14% |
| 2026-09-09 | 1,539.196 | +0.26% |
| 2026-09-08 | 1,535.1629 | -0.08% |
| 2026-09-07 | 1,536.4081 | +0.03% |
| 2026-09-06 | 1,535.9496 | -0.04% |
| 2026-09-05 | 1,536.5615 | -0.11% |
| 2026-09-04 | 1,538.2752 | -0.26% |
| 2026-09-03 | 1,542.3372 | -0.06% |
| 2026-09-02 | 1,543.2254 | -0.50% |
| 2026-09-01 | 1,550.9239 | -0.68% |
| 2026-08-31 | 1,561.4897 | -0.09% |
| 2026-08-30 | 1,562.9047 | -0.04% |
| 2026-08-29 | 1,563.5352 | +0.03% |
| 2026-08-28 | 1,563.0889 | — |
EUR to NGN conversion table
1 EUR1,513.0194 NGN
5 EUR7,565.0968 NGN
10 EUR15,130.194 NGN
25 EUR37,825.484 NGN
50 EUR75,650.968 NGN
100 EUR151,301.94 NGN
500 EUR756,509.68 NGN
1,000 EUR1,513,019.4 NGN
5,000 EUR7,565,096.8 NGN
10,000 EUR15,130,194 NGN
Get the EUR/NGN rate in your app
One GET request returns the latest EUR → NGN 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/NGN"fetch('https://rate-api.com/api/v1/pair/EUR/NGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} NGN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/NGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} NGN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/NGN');
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']} NGN\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "NGN"
},
"rate": 1513.0194,
"timestamp": 1790439686,
"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
NGN to EURNigerian Naira → Euro0.00066093Convert EUR to other currencies
Convert other currencies to NGN
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.