Convert USD to NIO
US Dollar → Nicaraguan Córdoba
1 USD = 36.795271 NIO(1 NIO = 0.0271774 USD)
Currency converter
1 USD =
36.7953 NIO
USD to NIO: last 30 days
Over the last 30 days, 1 USD traded between 36.5775 and 36.8557 NIO, averaging 36.7538 NIO. The USD/NIO rate is up 0.09% since 2026-08-28.
- 30-day high
- 36.8557
- 2026-09-24
- 30-day low
- 36.5775
- 2026-09-12
- 30-day average
- 36.7538
- Days with data: 30
- 30-day change
- +0.09%
- since 2026-08-28
36.8557
36.57752026-08-28 → 2026-09-26
| Date | 1 USD in NIO | Daily change |
|---|---|---|
| 2026-09-26 | 36.7953 | 0.00% |
| 2026-09-25 | 36.7953 | -0.16% |
| 2026-09-24 | 36.8557 | +0.09% |
| 2026-09-23 | 36.8237 | +0.28% |
| 2026-09-22 | 36.7194 | -0.08% |
| 2026-09-21 | 36.7499 | +0.05% |
| 2026-09-20 | 36.7311 | -0.18% |
| 2026-09-19 | 36.7966 | +0.35% |
| 2026-09-18 | 36.6701 | -0.05% |
| 2026-09-17 | 36.6875 | -0.06% |
| 2026-09-16 | 36.7098 | -0.05% |
| 2026-09-15 | 36.728 | +0.02% |
| 2026-09-14 | 36.7191 | +0.20% |
| 2026-09-13 | 36.6469 | +0.19% |
| 2026-09-12 | 36.5775 | -0.47% |
| Date | 1 USD in NIO | Daily change |
|---|---|---|
| 2026-09-11 | 36.7497 | -0.04% |
| 2026-09-10 | 36.7642 | +0.01% |
| 2026-09-09 | 36.7602 | -0.11% |
| 2026-09-08 | 36.8 | -0.01% |
| 2026-09-07 | 36.8045 | +0.26% |
| 2026-09-06 | 36.7076 | -0.24% |
| 2026-09-05 | 36.7969 | +0.02% |
| 2026-09-04 | 36.7895 | +0.05% |
| 2026-09-03 | 36.7723 | +0.05% |
| 2026-09-02 | 36.7548 | -0.12% |
| 2026-09-01 | 36.7992 | -0.07% |
| 2026-08-31 | 36.8245 | +0.38% |
| 2026-08-30 | 36.6861 | -0.40% |
| 2026-08-29 | 36.8334 | +0.19% |
| 2026-08-28 | 36.7637 | — |
USD to NIO conversion table
1 USD36.7953 NIO
5 USD183.9764 NIO
10 USD367.9527 NIO
25 USD919.8818 NIO
50 USD1,839.7636 NIO
100 USD3,679.5271 NIO
500 USD18,397.636 NIO
1,000 USD36,795.271 NIO
5,000 USD183,976.36 NIO
10,000 USD367,952.71 NIO
Get the USD/NIO rate in your app
One GET request returns the latest USD → NIO 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/NIO"fetch('https://rate-api.com/api/v1/pair/USD/NIO', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} NIO`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/NIO",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} NIO")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/NIO');
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']} NIO\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "NIO"
},
"rate": 36.7953,
"timestamp": 1790429348,
"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
NIO to USDNicaraguan Córdoba → US Dollar0.027177Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.