Convert USD to NGN
US Dollar → Nigerian Naira
1 USD = 1,326.8608 NGN(1 NGN = 0.000753659 USD)
Currency converter
1 USD =
1,326.8608 NGN
USD to NGN: last 30 days
Over the last 30 days, 1 USD traded between 1,320.9688 and 1,346.5819 NGN, averaging 1,329.1238 NGN. The USD/NGN rate is down 1.17% since 2026-08-28.
- 30-day high
- 1,346.5819
- 2026-08-31
- 30-day low
- 1,320.9688
- 2026-09-09
- 30-day average
- 1,329.1238
- Days with data: 30
- 30-day change
- -1.17%
- since 2026-08-28
1,346.5819
1,320.96882026-08-28 → 2026-09-26
| Date | 1 USD in NGN | Daily change |
|---|---|---|
| 2026-09-26 | 1,326.8608 | 0.00% |
| 2026-09-25 | 1,326.8608 | +0.02% |
| 2026-09-24 | 1,326.6314 | +0.13% |
| 2026-09-23 | 1,324.9109 | -0.11% |
| 2026-09-22 | 1,326.3046 | -0.33% |
| 2026-09-21 | 1,330.6366 | -0.09% |
| 2026-09-20 | 1,331.8345 | -0.00% |
| 2026-09-19 | 1,331.8574 | -0.01% |
| 2026-09-18 | 1,332.0391 | +0.17% |
| 2026-09-17 | 1,329.7861 | +0.13% |
| 2026-09-16 | 1,328.0471 | +0.30% |
| 2026-09-15 | 1,324.0944 | -0.09% |
| 2026-09-14 | 1,325.269 | -0.12% |
| 2026-09-13 | 1,326.883 | +0.03% |
| 2026-09-12 | 1,326.48 | -0.01% |
| Date | 1 USD in NGN | Daily change |
|---|---|---|
| 2026-09-11 | 1,326.5867 | +0.25% |
| 2026-09-10 | 1,323.235 | +0.17% |
| 2026-09-09 | 1,320.9688 | -0.06% |
| 2026-09-08 | 1,321.8213 | -0.01% |
| 2026-09-07 | 1,321.987 | +0.03% |
| 2026-09-06 | 1,321.5925 | -0.04% |
| 2026-09-05 | 1,322.119 | -0.11% |
| 2026-09-04 | 1,323.5935 | -0.32% |
| 2026-09-03 | 1,327.8906 | -0.38% |
| 2026-09-02 | 1,332.8992 | -0.39% |
| 2026-09-01 | 1,338.1526 | -0.63% |
| 2026-08-31 | 1,346.5819 | +0.31% |
| 2026-08-30 | 1,342.3632 | -0.04% |
| 2026-08-29 | 1,342.9048 | +0.03% |
| 2026-08-28 | 1,342.5214 | — |
USD to NGN conversion table
1 USD1,326.8608 NGN
5 USD6,634.3039 NGN
10 USD13,268.608 NGN
25 USD33,171.52 NGN
50 USD66,343.039 NGN
100 USD132,686.08 NGN
500 USD663,430.39 NGN
1,000 USD1,326,860.8 NGN
5,000 USD6,634,303.9 NGN
10,000 USD13,268,608 NGN
Get the USD/NGN rate in your app
One GET request returns the latest USD → 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/USD/NGN"fetch('https://rate-api.com/api/v1/pair/USD/NGN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} NGN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/NGN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} NGN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/NGN');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} NGN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "NGN"
},
"rate": 1326.8608,
"timestamp": 1790429362,
"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 USDNigerian Naira → US Dollar0.00075366Convert USD to other currencies
Convert other currencies to NGN
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.