Convert USD to ERN
US Dollar → Eritrean Nakfa
1 USD = 15 ERN(1 ERN = 0.0666667 USD)
Currency converter
1 USD =
15 ERN
USD to ERN: last 30 days
Over the last 30 days, 1 USD traded between 15 and 15 ERN, averaging 15 ERN. The USD/ERN rate has not changed since 2026-08-28.
- 30-day high
- 15
- 2026-08-28
- 30-day low
- 15
- 2026-09-18
- 30-day average
- 15
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
15
152026-08-28 → 2026-09-26
| Date | 1 USD in ERN | Daily change |
|---|---|---|
| 2026-09-26 | 15 | 0.00% |
| 2026-09-25 | 15 | 0.00% |
| 2026-09-24 | 15 | 0.00% |
| 2026-09-23 | 15 | 0.00% |
| 2026-09-22 | 15 | 0.00% |
| 2026-09-21 | 15 | 0.00% |
| 2026-09-20 | 15 | 0.00% |
| 2026-09-19 | 15 | +0.00% |
| 2026-09-18 | 15 | -0.00% |
| 2026-09-17 | 15 | 0.00% |
| 2026-09-16 | 15 | 0.00% |
| 2026-09-15 | 15 | 0.00% |
| 2026-09-14 | 15 | 0.00% |
| 2026-09-13 | 15 | 0.00% |
| 2026-09-12 | 15 | 0.00% |
| Date | 1 USD in ERN | Daily change |
|---|---|---|
| 2026-09-11 | 15 | 0.00% |
| 2026-09-10 | 15 | 0.00% |
| 2026-09-09 | 15 | 0.00% |
| 2026-09-08 | 15 | 0.00% |
| 2026-09-07 | 15 | 0.00% |
| 2026-09-06 | 15 | 0.00% |
| 2026-09-05 | 15 | 0.00% |
| 2026-09-04 | 15 | 0.00% |
| 2026-09-03 | 15 | 0.00% |
| 2026-09-02 | 15 | 0.00% |
| 2026-09-01 | 15 | 0.00% |
| 2026-08-31 | 15 | 0.00% |
| 2026-08-30 | 15 | 0.00% |
| 2026-08-29 | 15 | 0.00% |
| 2026-08-28 | 15 | — |
USD to ERN conversion table
1 USD15 ERN
5 USD75 ERN
10 USD150 ERN
25 USD375 ERN
50 USD750 ERN
100 USD1,500 ERN
500 USD7,500 ERN
1,000 USD15,000 ERN
5,000 USD75,000 ERN
10,000 USD150,000 ERN
Get the USD/ERN rate in your app
One GET request returns the latest USD → ERN 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/ERN"fetch('https://rate-api.com/api/v1/pair/USD/ERN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ERN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ERN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ERN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ERN');
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']} ERN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ERN"
},
"rate": 15,
"timestamp": 1790447427,
"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
ERN to USDEritrean Nakfa → US Dollar0.066667Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.