Convert USD to YER
US Dollar → Yemeni Rial
1 USD = 236.59414 YER(1 YER = 0.00422665 USD)
Currency converter
1 USD =
236.5941 YER
USD to YER: last 30 days
Over the last 30 days, 1 USD traded between 236.5481 and 237.0528 YER, averaging 236.8119 YER. The USD/YER rate is down 0.18% since 2026-08-29.
- 30-day high
- 237.0528
- 2026-09-12
- 30-day low
- 236.5481
- 2026-09-16
- 30-day average
- 236.8119
- Days with data: 30
- 30-day change
- -0.18%
- since 2026-08-29
237.0528
236.54812026-08-29 → 2026-09-27
| Date | 1 USD in YER | Daily change |
|---|---|---|
| 2026-09-27 | 236.5941 | 0.00% |
| 2026-09-26 | 236.5941 | +0.00% |
| 2026-09-25 | 236.5883 | -0.01% |
| 2026-09-24 | 236.6012 | +0.00% |
| 2026-09-23 | 236.6001 | +0.00% |
| 2026-09-22 | 236.5899 | -0.00% |
| 2026-09-21 | 236.6017 | +0.01% |
| 2026-09-20 | 236.5847 | -0.01% |
| 2026-09-19 | 236.5999 | -0.02% |
| 2026-09-18 | 236.6499 | +0.03% |
| 2026-09-17 | 236.5882 | +0.02% |
| 2026-09-16 | 236.5481 | -0.00% |
| 2026-09-15 | 236.5575 | -0.21% |
| 2026-09-14 | 237.0446 | +0.02% |
| 2026-09-13 | 237.0038 | -0.02% |
| Date | 1 USD in YER | Daily change |
|---|---|---|
| 2026-09-12 | 237.0528 | +0.01% |
| 2026-09-11 | 237.0322 | -0.00% |
| 2026-09-10 | 237.0411 | +0.01% |
| 2026-09-09 | 237.0257 | +0.01% |
| 2026-09-08 | 236.9936 | -0.00% |
| 2026-09-07 | 237.0037 | +0.01% |
| 2026-09-06 | 236.9864 | -0.01% |
| 2026-09-05 | 237.0082 | +0.00% |
| 2026-09-04 | 236.9994 | -0.01% |
| 2026-09-03 | 237.0272 | +0.01% |
| 2026-09-02 | 237.013 | +0.00% |
| 2026-09-01 | 237.009 | +0.16% |
| 2026-08-31 | 236.6378 | -0.06% |
| 2026-08-30 | 236.7681 | -0.10% |
| 2026-08-29 | 237.0116 | — |
USD to YER conversion table
1 USD236.5941 YER
5 USD1,182.9707 YER
10 USD2,365.9414 YER
25 USD5,914.8534 YER
50 USD11,829.707 YER
100 USD23,659.414 YER
500 USD118,297.07 YER
1,000 USD236,594.14 YER
5,000 USD1,182,970.7 YER
10,000 USD2,365,941.4 YER
Get the USD/YER rate in your app
One GET request returns the latest USD → YER 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/YER"fetch('https://rate-api.com/api/v1/pair/USD/YER', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} YER`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/YER",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} YER")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/YER');
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']} YER\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "YER"
},
"rate": 236.5941,
"timestamp": 1790470775,
"date": "2026-09-27"
}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
YER to USDYemeni Rial → US Dollar0.0042266Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.