Convert ZAR to JPY
South African Rand → Japanese Yen
1 ZAR = 9.671794 JPY(1 JPY = 0.103393 ZAR)
Currency converter
1 ZAR =
9.6718 JPY
ZAR to JPY: last 30 days
Over the last 30 days, 1 ZAR traded between 9.5112 and 9.9789 JPY, averaging 9.7015 JPY. The ZAR/JPY rate is down 3.08% since 2026-08-28.
- 30-day high
- 9.9789
- 2026-08-28
- 30-day low
- 9.5112
- 2026-09-14
- 30-day average
- 9.7015
- Days with data: 30
- 30-day change
- -3.08%
- since 2026-08-28
9.9789
9.51122026-08-28 → 2026-09-26
| Date | 1 ZAR in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 9.6718 | 0.00% |
| 2026-09-25 | 9.6718 | +0.07% |
| 2026-09-24 | 9.6646 | +0.04% |
| 2026-09-23 | 9.6603 | -0.18% |
| 2026-09-22 | 9.6775 | +0.05% |
| 2026-09-21 | 9.6726 | -0.31% |
| 2026-09-20 | 9.7029 | 0.00% |
| 2026-09-19 | 9.7029 | 0.00% |
| 2026-09-18 | 9.7029 | +1.29% |
| 2026-09-17 | 9.5794 | +0.51% |
| 2026-09-16 | 9.531 | +0.06% |
| 2026-09-15 | 9.5249 | +0.14% |
| 2026-09-14 | 9.5112 | -0.23% |
| 2026-09-13 | 9.5329 | 0.00% |
| 2026-09-12 | 9.5329 | 0.00% |
| Date | 1 ZAR in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 9.5329 | -0.17% |
| 2026-09-10 | 9.5488 | -0.07% |
| 2026-09-09 | 9.5556 | -0.77% |
| 2026-09-08 | 9.6293 | -0.49% |
| 2026-09-07 | 9.6769 | -1.11% |
| 2026-09-06 | 9.7857 | 0.00% |
| 2026-09-05 | 9.7857 | 0.00% |
| 2026-09-04 | 9.7857 | +0.59% |
| 2026-09-03 | 9.7279 | -1.90% |
| 2026-09-02 | 9.9165 | +0.03% |
| 2026-09-01 | 9.9135 | +0.02% |
| 2026-08-31 | 9.9111 | -0.68% |
| 2026-08-30 | 9.9789 | 0.00% |
| 2026-08-29 | 9.9789 | 0.00% |
| 2026-08-28 | 9.9789 | — |
ZAR to JPY conversion table
1 ZAR9.6718 JPY
5 ZAR48.359 JPY
10 ZAR96.7179 JPY
25 ZAR241.7949 JPY
50 ZAR483.5897 JPY
100 ZAR967.1794 JPY
500 ZAR4,835.897 JPY
1,000 ZAR9,671.7941 JPY
5,000 ZAR48,358.97 JPY
10,000 ZAR96,717.941 JPY
Get the ZAR/JPY rate in your app
One GET request returns the latest ZAR → JPY 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/ZAR/JPY"fetch('https://rate-api.com/api/v1/pair/ZAR/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZAR = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "JPY"
},
"rate": 9.6718,
"timestamp": 1790432062,
"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
JPY to ZARJapanese Yen → South African Rand0.10339Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.