Convert JOD to GBP
Jordanian Dinar → British Pound
1 JOD = 1.064291 GBP(1 GBP = 0.939593 JOD)
Currency converter
1 JOD =
1.0643 GBP
JOD to GBP: last 30 days
Over the last 30 days, 1 JOD traded between 1.0384 and 1.0669 GBP, averaging 1.0483 GBP. The JOD/GBP rate is up 2.49% since 2026-08-28.
- 30-day high
- 1.0669
- 2026-09-24
- 30-day low
- 1.0384
- 2026-08-28
- 30-day average
- 1.0483
- Days with data: 30
- 30-day change
- +2.49%
- since 2026-08-28
1.0669
1.03842026-08-28 → 2026-09-26
| Date | 1 JOD in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 1.0643 | 0.00% |
| 2026-09-25 | 1.0643 | -0.25% |
| 2026-09-24 | 1.0669 | +0.43% |
| 2026-09-23 | 1.0624 | +0.65% |
| 2026-09-22 | 1.0555 | +0.24% |
| 2026-09-21 | 1.053 | -0.38% |
| 2026-09-20 | 1.057 | 0.00% |
| 2026-09-19 | 1.057 | +0.00% |
| 2026-09-18 | 1.0569 | +0.24% |
| 2026-09-17 | 1.0544 | +0.59% |
| 2026-09-16 | 1.0482 | +0.20% |
| 2026-09-15 | 1.0461 | +0.08% |
| 2026-09-14 | 1.0452 | +0.10% |
| 2026-09-13 | 1.0441 | 0.00% |
| 2026-09-12 | 1.0441 | 0.00% |
| Date | 1 JOD in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 1.0441 | +0.09% |
| 2026-09-10 | 1.0432 | +0.33% |
| 2026-09-09 | 1.0398 | -0.14% |
| 2026-09-08 | 1.0413 | -0.11% |
| 2026-09-07 | 1.0424 | -0.01% |
| 2026-09-06 | 1.0425 | 0.00% |
| 2026-09-05 | 1.0425 | 0.00% |
| 2026-09-04 | 1.0425 | -0.24% |
| 2026-09-03 | 1.045 | -0.10% |
| 2026-09-02 | 1.0461 | +0.36% |
| 2026-09-01 | 1.0424 | +0.06% |
| 2026-08-31 | 1.0417 | +0.32% |
| 2026-08-30 | 1.0384 | 0.00% |
| 2026-08-29 | 1.0384 | 0.00% |
| 2026-08-28 | 1.0384 | — |
JOD to GBP conversion table
1 JOD1.0643 GBP
5 JOD5.3215 GBP
10 JOD10.6429 GBP
25 JOD26.6073 GBP
50 JOD53.2145 GBP
100 JOD106.4291 GBP
500 JOD532.1454 GBP
1,000 JOD1,064.2907 GBP
5,000 JOD5,321.4536 GBP
10,000 JOD10,642.907 GBP
Get the JOD/GBP rate in your app
One GET request returns the latest JOD → GBP 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/GBP"fetch('https://rate-api.com/api/v1/pair/JOD/GBP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JOD = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JOD/GBP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JOD = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JOD/GBP');
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']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "JOD",
"to": "GBP"
},
"rate": 1.0643,
"timestamp": 1790432158,
"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
GBP to JODBritish Pound → Jordanian Dinar0.93959Convert JOD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.