Convert AED to JPY
UAE Dirham → Japanese Yen
1 AED = 42.910853 JPY(1 JPY = 0.0233041 AED)
Currency converter
1 AED =
42.9109 JPY
AED to JPY: last 30 days
Over the last 30 days, 1 AED traded between 41.7345 and 43.6106 JPY, averaging 42.68 JPY. The AED/JPY rate is down 1.31% since 2026-08-28.
- 30-day high
- 43.6106
- 2026-09-01
- 30-day low
- 41.7345
- 2026-09-09
- 30-day average
- 42.68
- Days with data: 30
- 30-day change
- -1.31%
- since 2026-08-28
43.6106
41.73452026-08-28 → 2026-09-26
| Date | 1 AED in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 42.9109 | 0.00% |
| 2026-09-25 | 42.9109 | -0.80% |
| 2026-09-24 | 43.2552 | +0.59% |
| 2026-09-23 | 43.0001 | +0.47% |
| 2026-09-22 | 42.7992 | -0.06% |
| 2026-09-21 | 42.8237 | -0.39% |
| 2026-09-20 | 42.9925 | 0.00% |
| 2026-09-19 | 42.9925 | -0.00% |
| 2026-09-18 | 42.9925 | +1.41% |
| 2026-09-17 | 42.3935 | +0.41% |
| 2026-09-16 | 42.2192 | +0.03% |
| 2026-09-15 | 42.2056 | +0.29% |
| 2026-09-14 | 42.0831 | +0.33% |
| 2026-09-13 | 41.9442 | 0.00% |
| 2026-09-12 | 41.9442 | 0.00% |
| Date | 1 AED in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 41.9442 | -0.09% |
| 2026-09-10 | 41.9823 | +0.59% |
| 2026-09-09 | 41.7345 | -0.67% |
| 2026-09-08 | 42.015 | -0.29% |
| 2026-09-07 | 42.1375 | -0.96% |
| 2026-09-06 | 42.546 | 0.00% |
| 2026-09-05 | 42.546 | 0.00% |
| 2026-09-04 | 42.546 | +0.15% |
| 2026-09-03 | 42.4806 | -2.25% |
| 2026-09-02 | 43.4581 | -0.35% |
| 2026-09-01 | 43.6106 | +0.27% |
| 2026-08-31 | 43.4935 | +0.03% |
| 2026-08-30 | 43.4799 | 0.00% |
| 2026-08-29 | 43.4799 | 0.00% |
| 2026-08-28 | 43.4799 | — |
AED to JPY conversion table
1 AED42.9109 JPY
5 AED214.5543 JPY
10 AED429.1085 JPY
25 AED1,072.7713 JPY
50 AED2,145.5427 JPY
100 AED4,291.0853 JPY
500 AED21,455.427 JPY
1,000 AED42,910.853 JPY
5,000 AED214,554.27 JPY
10,000 AED429,108.53 JPY
Get the AED/JPY rate in your app
One GET request returns the latest AED → 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/AED/JPY"fetch('https://rate-api.com/api/v1/pair/AED/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AED = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AED/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AED = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AED/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AED = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "AED",
"to": "JPY"
},
"rate": 42.9109,
"timestamp": 1790432038,
"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 AEDJapanese Yen → UAE Dirham0.023304Convert AED to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.