Nigerian Naira (NGN) ₦
Nigerian Naira exchange rates against major world currencies, checked hourly and updated as sources publish.
1 NGN = 0.000753659 USD
1 NGN in other currencies
NGN to USDUS Dollar0.00075366NGN to EUREuro0.00066093NGN to GBPBritish Pound0.0005687NGN to JPYJapanese Yen0.11877NGN to CNYChinese Yuan0.0050595NGN to CADCanadian Dollar0.0010659NGN to AUDAustralian Dollar0.001072NGN to CHFSwiss Franc0.00062425NGN to INRIndian Rupee0.072214NGN to RUBRussian Ruble0.064071
Convert to NGN
USD to NGNUS Dollar1,326.8608EUR to NGNEuro1,513.0194GBP to NGNBritish Pound1,758.4047JPY to NGNJapanese Yen8.4197CNY to NGNChinese Yuan197.6485CAD to NGNCanadian Dollar938.1902AUD to NGNAustralian Dollar932.8109CHF to NGNSwiss Franc1,601.9263INR to NGNIndian Rupee13.8478RUB to NGNRussian Ruble15.6077
Get NGN rates in your app
One GET request returns every rate against NGN as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=NGN"fetch('https://rate-api.com/api/v1/latest?base=NGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NGN = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=NGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NGN = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=NGN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NGN = {$data['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.