Convert USD to ETB
US Dollar → Ethiopian Birr
1 USD = 163.0517 ETB(1 ETB = 0.00613302 USD)
Currency converter
1 USD =
163.0517 ETB
USD to ETB: last 30 days
Over the last 30 days, 1 USD traded between 160.4995 and 164.1739 ETB, averaging 161.9399 ETB. The USD/ETB rate is down 0.08% since 2026-08-28.
- 30-day high
- 164.1739
- 2026-08-31
- 30-day low
- 160.4995
- 2026-08-30
- 30-day average
- 161.9399
- Days with data: 30
- 30-day change
- -0.08%
- since 2026-08-28
164.1739
160.49952026-08-28 → 2026-09-26
| Date | 1 USD in ETB | Daily change |
|---|---|---|
| 2026-09-26 | 163.0517 | 0.00% |
| 2026-09-25 | 163.0517 | -0.33% |
| 2026-09-24 | 163.5848 | +1.14% |
| 2026-09-23 | 161.7446 | -0.63% |
| 2026-09-22 | 162.776 | -0.27% |
| 2026-09-21 | 163.2167 | +1.62% |
| 2026-09-20 | 160.6175 | +0.01% |
| 2026-09-19 | 160.6065 | -0.23% |
| 2026-09-18 | 160.9749 | -0.76% |
| 2026-09-17 | 162.2015 | +0.07% |
| 2026-09-16 | 162.0817 | +0.42% |
| 2026-09-15 | 161.3974 | +0.03% |
| 2026-09-14 | 161.3565 | +0.08% |
| 2026-09-13 | 161.225 | +0.09% |
| 2026-09-12 | 161.0842 | -0.07% |
| Date | 1 USD in ETB | Daily change |
|---|---|---|
| 2026-09-11 | 161.1895 | -1.07% |
| 2026-09-10 | 162.9375 | +0.82% |
| 2026-09-09 | 161.6087 | -0.22% |
| 2026-09-08 | 161.9592 | -0.27% |
| 2026-09-07 | 162.3942 | +0.84% |
| 2026-09-06 | 161.0395 | -0.25% |
| 2026-09-05 | 161.4472 | +0.03% |
| 2026-09-04 | 161.4015 | -0.79% |
| 2026-09-03 | 162.691 | +0.32% |
| 2026-09-02 | 162.166 | +0.08% |
| 2026-09-01 | 162.0357 | -1.30% |
| 2026-08-31 | 164.1739 | +2.29% |
| 2026-08-30 | 160.4995 | -0.00% |
| 2026-08-29 | 160.5012 | -1.64% |
| 2026-08-28 | 163.183 | — |
USD to ETB conversion table
1 USD163.0517 ETB
5 USD815.2585 ETB
10 USD1,630.517 ETB
25 USD4,076.2925 ETB
50 USD8,152.585 ETB
100 USD16,305.17 ETB
500 USD81,525.85 ETB
1,000 USD163,051.7 ETB
5,000 USD815,258.5 ETB
10,000 USD1,630,517 ETB
Get the USD/ETB rate in your app
One GET request returns the latest USD → ETB 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/ETB"fetch('https://rate-api.com/api/v1/pair/USD/ETB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} ETB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/ETB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} ETB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/ETB');
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']} ETB\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "ETB"
},
"rate": 163.0517,
"timestamp": 1790447429,
"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
ETB to USDEthiopian Birr → US Dollar0.006133Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.