Convert PHP to JPY
Philippine Peso → Japanese Yen
1 PHP = 2.522318 JPY(1 JPY = 0.396461 PHP)
Currency converter
1 PHP =
2.5223 JPY
PHP to JPY: last 30 days
Over the last 30 days, 1 PHP traded between 2.4527 and 2.5655 JPY, averaging 2.5043 JPY. The PHP/JPY rate is down 1.66% since 2026-08-28.
- 30-day high
- 2.5655
- 2026-09-01
- 30-day low
- 2.4527
- 2026-09-09
- 30-day average
- 2.5043
- Days with data: 30
- 30-day change
- -1.66%
- since 2026-08-28
2.5655
2.45272026-08-28 → 2026-09-26
| Date | 1 PHP in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 2.5223 | 0.00% |
| 2026-09-25 | 2.5223 | -0.36% |
| 2026-09-24 | 2.5315 | +0.27% |
| 2026-09-23 | 2.5248 | +0.34% |
| 2026-09-22 | 2.5163 | +0.47% |
| 2026-09-21 | 2.5045 | -0.38% |
| 2026-09-20 | 2.5141 | 0.00% |
| 2026-09-19 | 2.5141 | 0.00% |
| 2026-09-18 | 2.5141 | +1.28% |
| 2026-09-17 | 2.4824 | +0.43% |
| 2026-09-16 | 2.4717 | +0.15% |
| 2026-09-15 | 2.4681 | +0.40% |
| 2026-09-14 | 2.4583 | -0.05% |
| 2026-09-13 | 2.4596 | 0.00% |
| 2026-09-12 | 2.4596 | 0.00% |
| Date | 1 PHP in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 2.4596 | -0.18% |
| 2026-09-10 | 2.4639 | +0.46% |
| 2026-09-09 | 2.4527 | -0.64% |
| 2026-09-08 | 2.4685 | -0.08% |
| 2026-09-07 | 2.4704 | -0.95% |
| 2026-09-06 | 2.494 | 0.00% |
| 2026-09-05 | 2.494 | 0.00% |
| 2026-09-04 | 2.494 | -0.07% |
| 2026-09-03 | 2.4958 | -2.19% |
| 2026-09-02 | 2.5518 | -0.53% |
| 2026-09-01 | 2.5655 | +0.22% |
| 2026-08-31 | 2.5599 | -0.20% |
| 2026-08-30 | 2.565 | 0.00% |
| 2026-08-29 | 2.565 | 0.00% |
| 2026-08-28 | 2.565 | — |
PHP to JPY conversion table
1 PHP2.5223 JPY
5 PHP12.6116 JPY
10 PHP25.2232 JPY
25 PHP63.0579 JPY
50 PHP126.1159 JPY
100 PHP252.2318 JPY
500 PHP1,261.1588 JPY
1,000 PHP2,522.3177 JPY
5,000 PHP12,611.588 JPY
10,000 PHP25,223.177 JPY
Get the PHP/JPY rate in your app
One GET request returns the latest PHP → 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/PHP/JPY"fetch('https://rate-api.com/api/v1/pair/PHP/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PHP = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PHP/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PHP = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PHP/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PHP = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "PHP",
"to": "JPY"
},
"rate": 2.5223,
"timestamp": 1790432027,
"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 PHPJapanese Yen → Philippine Peso0.39646Convert PHP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.