Convert JPY to ZAR
Japanese Yen → South African Rand
1 JPY = 0.103393 ZAR(1 ZAR = 9.671794 JPY)
Currency converter
1 JPY =
0.10339 ZAR
JPY to ZAR: last 30 days
Over the last 30 days, 1 JPY traded between 0.10021 and 0.10514 ZAR, averaging 0.1031 ZAR. The JPY/ZAR rate is up 3.18% since 2026-08-28.
- 30-day high
- 0.10514
- 2026-09-14
- 30-day low
- 0.10021
- 2026-08-28
- 30-day average
- 0.1031
- Days with data: 30
- 30-day change
- +3.18%
- since 2026-08-28
0.10514
0.100212026-08-28 → 2026-09-26
| Date | 1 JPY in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 0.10339 | 0.00% |
| 2026-09-25 | 0.10339 | -0.07% |
| 2026-09-24 | 0.10347 | -0.04% |
| 2026-09-23 | 0.10352 | +0.18% |
| 2026-09-22 | 0.10333 | -0.05% |
| 2026-09-21 | 0.10338 | +0.31% |
| 2026-09-20 | 0.10306 | 0.00% |
| 2026-09-19 | 0.10306 | 0.00% |
| 2026-09-18 | 0.10306 | -1.27% |
| 2026-09-17 | 0.10439 | -0.51% |
| 2026-09-16 | 0.10492 | -0.06% |
| 2026-09-15 | 0.10499 | -0.14% |
| 2026-09-14 | 0.10514 | +0.23% |
| 2026-09-13 | 0.1049 | 0.00% |
| 2026-09-12 | 0.1049 | 0.00% |
| Date | 1 JPY in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 0.1049 | +0.17% |
| 2026-09-10 | 0.10473 | +0.07% |
| 2026-09-09 | 0.10465 | +0.77% |
| 2026-09-08 | 0.10385 | +0.49% |
| 2026-09-07 | 0.10334 | +1.12% |
| 2026-09-06 | 0.10219 | 0.00% |
| 2026-09-05 | 0.10219 | 0.00% |
| 2026-09-04 | 0.10219 | -0.59% |
| 2026-09-03 | 0.1028 | +1.94% |
| 2026-09-02 | 0.10084 | -0.03% |
| 2026-09-01 | 0.10087 | -0.02% |
| 2026-08-31 | 0.1009 | +0.68% |
| 2026-08-30 | 0.10021 | 0.00% |
| 2026-08-29 | 0.10021 | 0.00% |
| 2026-08-28 | 0.10021 | — |
JPY to ZAR conversion table
1 JPY0.10339 ZAR
5 JPY0.51697 ZAR
10 JPY1.0339 ZAR
25 JPY2.5848 ZAR
50 JPY5.1697 ZAR
100 JPY10.3393 ZAR
500 JPY51.6967 ZAR
1,000 JPY103.3934 ZAR
5,000 JPY516.9672 ZAR
10,000 JPY1,033.9343 ZAR
Get the JPY/ZAR rate in your app
One GET request returns the latest JPY → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/JPY/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "ZAR"
},
"rate": 0.1034,
"timestamp": 1790429292,
"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
ZAR to JPYSouth African Rand → Japanese Yen9.6718Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.