Convert JPY to GBP
Japanese Yen → British Pound
1 JPY = 0.00478826 GBP(1 GBP = 208.84421 JPY)
Currency converter
1 JPY =
0.0047883 GBP
JPY to GBP: last 30 days
Over the last 30 days, 1 JPY traded between 0.0046107 and 0.0048098 GBP, averaging 0.0047483 GBP. The JPY/GBP rate is up 3.85% since 2026-08-29.
- 30-day high
- 0.0048098
- 2026-09-09
- 30-day low
- 0.0046107
- 2026-08-29
- 30-day average
- 0.0047483
- Days with data: 30
- 30-day change
- +3.85%
- since 2026-08-29
0.0048098
0.00461072026-08-29 → 2026-09-27
| Date | 1 JPY in GBP | Daily change |
|---|---|---|
| 2026-09-27 | 0.0047883 | 0.00% |
| 2026-09-26 | 0.0047883 | 0.00% |
| 2026-09-25 | 0.0047883 | +0.55% |
| 2026-09-24 | 0.0047619 | -0.16% |
| 2026-09-23 | 0.0047697 | +0.18% |
| 2026-09-22 | 0.0047609 | +0.29% |
| 2026-09-21 | 0.004747 | +0.02% |
| 2026-09-20 | 0.0047463 | 0.00% |
| 2026-09-19 | 0.0047463 | 0.00% |
| 2026-09-18 | 0.0047463 | -1.15% |
| 2026-09-17 | 0.0048017 | +0.18% |
| 2026-09-16 | 0.0047931 | +0.17% |
| 2026-09-15 | 0.0047849 | -0.21% |
| 2026-09-14 | 0.0047948 | -0.23% |
| 2026-09-13 | 0.0048059 | 0.00% |
| Date | 1 JPY in GBP | Daily change |
|---|---|---|
| 2026-09-12 | 0.0048059 | 0.00% |
| 2026-09-11 | 0.0048059 | +0.18% |
| 2026-09-10 | 0.0047972 | -0.26% |
| 2026-09-09 | 0.0048098 | +0.53% |
| 2026-09-08 | 0.0047845 | +0.18% |
| 2026-09-07 | 0.0047758 | +0.96% |
| 2026-09-06 | 0.0047302 | 0.00% |
| 2026-09-05 | 0.0047302 | 0.00% |
| 2026-09-04 | 0.0047302 | -0.40% |
| 2026-09-03 | 0.0047491 | +2.19% |
| 2026-09-02 | 0.0046471 | +0.71% |
| 2026-09-01 | 0.0046144 | -0.21% |
| 2026-08-31 | 0.0046241 | +0.29% |
| 2026-08-30 | 0.0046107 | 0.00% |
| 2026-08-29 | 0.0046107 | — |
JPY to GBP conversion table
1 JPY0.0047883 GBP
5 JPY0.023941 GBP
10 JPY0.047883 GBP
25 JPY0.11971 GBP
50 JPY0.23941 GBP
100 JPY0.47883 GBP
500 JPY2.3941 GBP
1,000 JPY4.7883 GBP
5,000 JPY23.9413 GBP
10,000 JPY47.8826 GBP
Get the JPY/GBP rate in your app
One GET request returns the latest JPY → 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/JPY/GBP?precision=6"fetch('https://rate-api.com/api/v1/pair/JPY/GBP?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/GBP?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/GBP?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "GBP"
},
"rate": 0.004788,
"timestamp": 1790470788,
"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
GBP to JPYBritish Pound → Japanese Yen208.8442Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.