Convert JOD to USD
Jordanian Dinar → US Dollar
1 JOD = 1.410437 USD(1 USD = 0.709 JOD)
Currency converter
1 JOD =
1.4104 USD
JOD to USD: last 30 days
Over the last 30 days, 1 JOD traded between 1.4104 and 1.4104 USD, averaging 1.4104 USD. The JOD/USD rate has not changed since 2026-08-28.
- 30-day high
- 1.4104
- 2026-08-28
- 30-day low
- 1.4104
- 2026-09-18
- 30-day average
- 1.4104
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
1.4104
1.41042026-08-28 → 2026-09-26
| Date | 1 JOD in USD | Daily change |
|---|---|---|
| 2026-09-26 | 1.4104 | 0.00% |
| 2026-09-25 | 1.4104 | 0.00% |
| 2026-09-24 | 1.4104 | 0.00% |
| 2026-09-23 | 1.4104 | 0.00% |
| 2026-09-22 | 1.4104 | 0.00% |
| 2026-09-21 | 1.4104 | 0.00% |
| 2026-09-20 | 1.4104 | 0.00% |
| 2026-09-19 | 1.4104 | +0.00% |
| 2026-09-18 | 1.4104 | -0.00% |
| 2026-09-17 | 1.4104 | 0.00% |
| 2026-09-16 | 1.4104 | 0.00% |
| 2026-09-15 | 1.4104 | 0.00% |
| 2026-09-14 | 1.4104 | 0.00% |
| 2026-09-13 | 1.4104 | 0.00% |
| 2026-09-12 | 1.4104 | 0.00% |
| Date | 1 JOD in USD | Daily change |
|---|---|---|
| 2026-09-11 | 1.4104 | 0.00% |
| 2026-09-10 | 1.4104 | 0.00% |
| 2026-09-09 | 1.4104 | 0.00% |
| 2026-09-08 | 1.4104 | 0.00% |
| 2026-09-07 | 1.4104 | 0.00% |
| 2026-09-06 | 1.4104 | 0.00% |
| 2026-09-05 | 1.4104 | 0.00% |
| 2026-09-04 | 1.4104 | 0.00% |
| 2026-09-03 | 1.4104 | 0.00% |
| 2026-09-02 | 1.4104 | 0.00% |
| 2026-09-01 | 1.4104 | 0.00% |
| 2026-08-31 | 1.4104 | 0.00% |
| 2026-08-30 | 1.4104 | 0.00% |
| 2026-08-29 | 1.4104 | 0.00% |
| 2026-08-28 | 1.4104 | — |
JOD to USD conversion table
1 JOD1.4104 USD
5 JOD7.0522 USD
10 JOD14.1044 USD
25 JOD35.2609 USD
50 JOD70.5219 USD
100 JOD141.0437 USD
500 JOD705.2186 USD
1,000 JOD1,410.4372 USD
5,000 JOD7,052.1862 USD
10,000 JOD14,104.372 USD
Get the JOD/USD rate in your app
One GET request returns the latest JOD → 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/JOD/USD"fetch('https://rate-api.com/api/v1/pair/JOD/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JOD = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JOD/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JOD = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JOD/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JOD = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "JOD",
"to": "USD"
},
"rate": 1.4104,
"timestamp": 1790432084,
"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 JODUS Dollar → Jordanian Dinar0.709Convert JOD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.