Convert EUR to JPY
Euro → Japanese Yen
1 EUR = 179.7 JPY(1 JPY = 0.00556483 EUR)
Currency converter
1 EUR =
179.7 JPY
EUR to JPY: last 30 days
Over the last 30 days, 1 EUR traded between 178.5199 and 185.9144 JPY, averaging 180.8152 JPY. The EUR/JPY rate is down 3.34% since 2026-08-29.
- 30-day high
- 185.9144
- 2026-08-29
- 30-day low
- 178.5199
- 2026-09-14
- 30-day average
- 180.8152
- Days with data: 30
- 30-day change
- -3.34%
- since 2026-08-29
185.9144
178.51992026-08-29 → 2026-09-27
| Date | 1 EUR in JPY | Daily change |
|---|---|---|
| 2026-09-27 | 179.7 | 0.00% |
| 2026-09-26 | 179.7 | 0.00% |
| 2026-09-25 | 179.7 | -0.48% |
| 2026-09-24 | 180.57 | +0.21% |
| 2026-09-23 | 180.2 | +0.01% |
| 2026-09-22 | 180.1758 | -0.29% |
| 2026-09-21 | 180.7037 | -0.13% |
| 2026-09-20 | 180.942 | 0.00% |
| 2026-09-19 | 180.942 | 0.00% |
| 2026-09-18 | 180.942 | +1.23% |
| 2026-09-17 | 178.7486 | -0.07% |
| 2026-09-16 | 178.8805 | +0.01% |
| 2026-09-15 | 178.8537 | +0.19% |
| 2026-09-14 | 178.5199 | -0.02% |
| 2026-09-13 | 178.564 | 0.00% |
| Date | 1 EUR in JPY | Daily change |
|---|---|---|
| 2026-09-12 | 178.564 | 0.00% |
| 2026-09-11 | 178.564 | -0.30% |
| 2026-09-10 | 179.0958 | +0.28% |
| 2026-09-09 | 178.5906 | -0.34% |
| 2026-09-08 | 179.204 | -0.36% |
| 2026-09-07 | 179.8498 | -0.96% |
| 2026-09-06 | 181.5931 | 0.00% |
| 2026-09-05 | 181.5931 | 0.00% |
| 2026-09-04 | 181.5931 | +0.21% |
| 2026-09-03 | 181.2047 | -1.94% |
| 2026-09-02 | 184.7842 | -0.45% |
| 2026-09-01 | 185.626 | +0.22% |
| 2026-08-31 | 185.2221 | -0.37% |
| 2026-08-30 | 185.9144 | 0.00% |
| 2026-08-29 | 185.9144 | — |
EUR to JPY conversion table
1 EUR179.7 JPY
5 EUR898.5 JPY
10 EUR1,797 JPY
25 EUR4,492.5 JPY
50 EUR8,985 JPY
100 EUR17,970 JPY
500 EUR89,850 JPY
1,000 EUR179,700 JPY
5,000 EUR898,500 JPY
10,000 EUR1,797,000 JPY
Get the EUR/JPY rate in your app
One GET request returns the latest EUR → 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/EUR/JPY"fetch('https://rate-api.com/api/v1/pair/EUR/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "JPY"
},
"rate": 179.7,
"timestamp": 1790470786,
"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
JPY to EURJapanese Yen → Euro0.0055648Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.