Convert NGN to USD
Nigerian Naira → US Dollar
1 NGN = 0.000753659 USD(1 USD = 1,326.8608 NGN)
Currency converter
1 NGN =
0.00075366 USD
NGN to USD: last 30 days
Over the last 30 days, 1 NGN traded between 0.00074262 and 0.00075702 USD, averaging 0.0007524 USD. The NGN/USD rate is up 1.18% since 2026-08-28.
- 30-day high
- 0.00075702
- 2026-09-09
- 30-day low
- 0.00074262
- 2026-08-31
- 30-day average
- 0.0007524
- Days with data: 30
- 30-day change
- +1.18%
- since 2026-08-28
0.00075702
0.000742622026-08-28 → 2026-09-26
| Date | 1 NGN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00075366 | 0.00% |
| 2026-09-25 | 0.00075366 | -0.02% |
| 2026-09-24 | 0.00075379 | -0.13% |
| 2026-09-23 | 0.00075477 | +0.11% |
| 2026-09-22 | 0.00075397 | +0.33% |
| 2026-09-21 | 0.00075152 | +0.09% |
| 2026-09-20 | 0.00075084 | +0.00% |
| 2026-09-19 | 0.00075083 | +0.01% |
| 2026-09-18 | 0.00075073 | -0.17% |
| 2026-09-17 | 0.000752 | -0.13% |
| 2026-09-16 | 0.00075299 | -0.30% |
| 2026-09-15 | 0.00075523 | +0.09% |
| 2026-09-14 | 0.00075456 | +0.12% |
| 2026-09-13 | 0.00075365 | -0.03% |
| 2026-09-12 | 0.00075387 | +0.01% |
| Date | 1 NGN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00075381 | -0.25% |
| 2026-09-10 | 0.00075572 | -0.17% |
| 2026-09-09 | 0.00075702 | +0.06% |
| 2026-09-08 | 0.00075653 | +0.01% |
| 2026-09-07 | 0.00075644 | -0.03% |
| 2026-09-06 | 0.00075666 | +0.04% |
| 2026-09-05 | 0.00075636 | +0.11% |
| 2026-09-04 | 0.00075552 | +0.32% |
| 2026-09-03 | 0.00075307 | +0.38% |
| 2026-09-02 | 0.00075024 | +0.39% |
| 2026-09-01 | 0.0007473 | +0.63% |
| 2026-08-31 | 0.00074262 | -0.31% |
| 2026-08-30 | 0.00074495 | +0.04% |
| 2026-08-29 | 0.00074465 | -0.03% |
| 2026-08-28 | 0.00074487 | — |
NGN to USD conversion table
1 NGN0.00075366 USD
5 NGN0.0037683 USD
10 NGN0.0075366 USD
25 NGN0.018841 USD
50 NGN0.037683 USD
100 NGN0.075366 USD
500 NGN0.37683 USD
1,000 NGN0.75366 USD
5,000 NGN3.7683 USD
10,000 NGN7.5366 USD
Get the NGN/USD rate in your app
One GET request returns the latest NGN → USD 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/NGN/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/NGN/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NGN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NGN/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NGN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NGN/USD?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 NGN = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "NGN",
"to": "USD"
},
"rate": 0.000754,
"timestamp": 1790435074,
"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
USD to NGNUS Dollar → Nigerian Naira1,326.8608Convert NGN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.