Convert EUR to PHP
Euro → Philippine Peso
1 EUR = 71.244 PHP(1 PHP = 0.0140363 EUR)
Currency converter
1 EUR =
71.244 PHP
EUR to PHP: last 30 days
Over the last 30 days, 1 EUR traded between 71.244 and 72.8147 PHP, averaging 72.2877 PHP. The EUR/PHP rate is down 1.71% since 2026-08-28.
- 30-day high
- 72.8147
- 2026-09-09
- 30-day low
- 71.244
- 2026-09-25
- 30-day average
- 72.2877
- Days with data: 30
- 30-day change
- -1.71%
- since 2026-08-28
72.8147
71.2442026-08-28 → 2026-09-26
| Date | 1 EUR in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 71.244 | 0.00% |
| 2026-09-25 | 71.244 | -0.12% |
| 2026-09-24 | 71.328 | -0.06% |
| 2026-09-23 | 71.371 | -0.32% |
| 2026-09-22 | 71.6026 | -0.76% |
| 2026-09-21 | 72.1516 | +0.25% |
| 2026-09-20 | 71.9723 | 0.00% |
| 2026-09-19 | 71.9723 | 0.00% |
| 2026-09-18 | 71.9723 | -0.05% |
| 2026-09-17 | 72.0069 | -0.50% |
| 2026-09-16 | 72.3702 | -0.13% |
| 2026-09-15 | 72.4669 | -0.21% |
| 2026-09-14 | 72.6185 | +0.03% |
| 2026-09-13 | 72.5999 | 0.00% |
| 2026-09-12 | 72.5999 | 0.00% |
| Date | 1 EUR in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 72.5999 | -0.12% |
| 2026-09-10 | 72.6884 | -0.17% |
| 2026-09-09 | 72.8147 | +0.30% |
| 2026-09-08 | 72.5968 | -0.28% |
| 2026-09-07 | 72.8011 | -0.01% |
| 2026-09-06 | 72.8116 | 0.00% |
| 2026-09-05 | 72.8116 | 0.00% |
| 2026-09-04 | 72.8116 | +0.28% |
| 2026-09-03 | 72.605 | +0.26% |
| 2026-09-02 | 72.4144 | +0.08% |
| 2026-09-01 | 72.3554 | +0.00% |
| 2026-08-31 | 72.3553 | -0.17% |
| 2026-08-30 | 72.4819 | 0.00% |
| 2026-08-29 | 72.4819 | 0.00% |
| 2026-08-28 | 72.4819 | — |
EUR to PHP conversion table
1 EUR71.244 PHP
5 EUR356.22 PHP
10 EUR712.44 PHP
25 EUR1,781.1 PHP
50 EUR3,562.2 PHP
100 EUR7,124.4 PHP
500 EUR35,622 PHP
1,000 EUR71,244 PHP
5,000 EUR356,220 PHP
10,000 EUR712,440 PHP
Get the EUR/PHP rate in your app
One GET request returns the latest EUR → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/EUR/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "PHP"
},
"rate": 71.244,
"timestamp": 1790429244,
"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
PHP to EURPhilippine Peso → Euro0.014036Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.