Convert INR to PHP
Indian Rupee → Philippine Peso
1 INR = 0.652056 PHP(1 PHP = 1.53361 INR)
Currency converter
1 INR =
0.65206 PHP
INR to PHP: last 30 days
Over the last 30 days, 1 INR traded between 0.65206 and 0.66303 PHP, averaging 0.6562 PHP. The INR/PHP rate is down 0.09% since 2026-08-28.
- 30-day high
- 0.66303
- 2026-09-04
- 30-day low
- 0.65206
- 2026-09-25
- 30-day average
- 0.6562
- Days with data: 30
- 30-day change
- -0.09%
- since 2026-08-28
0.66303
0.652062026-08-28 → 2026-09-26
| Date | 1 INR in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 0.65206 | 0.00% |
| 2026-09-25 | 0.65206 | -0.29% |
| 2026-09-24 | 0.65392 | +0.10% |
| 2026-09-23 | 0.65328 | -0.03% |
| 2026-09-22 | 0.65346 | -0.29% |
| 2026-09-21 | 0.65534 | +0.05% |
| 2026-09-20 | 0.65502 | 0.00% |
| 2026-09-19 | 0.65502 | 0.00% |
| 2026-09-18 | 0.65502 | +0.20% |
| 2026-09-17 | 0.65372 | +0.00% |
| 2026-09-16 | 0.6537 | -0.12% |
| 2026-09-15 | 0.65446 | -0.52% |
| 2026-09-14 | 0.65789 | +0.38% |
| 2026-09-13 | 0.65539 | 0.00% |
| 2026-09-12 | 0.65539 | 0.00% |
| Date | 1 INR in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 0.65539 | -0.04% |
| 2026-09-10 | 0.65566 | -0.21% |
| 2026-09-09 | 0.65704 | -0.32% |
| 2026-09-08 | 0.65916 | -0.57% |
| 2026-09-07 | 0.66294 | -0.01% |
| 2026-09-06 | 0.66303 | 0.00% |
| 2026-09-05 | 0.66303 | 0.00% |
| 2026-09-04 | 0.66303 | +0.22% |
| 2026-09-03 | 0.66155 | +0.45% |
| 2026-09-02 | 0.65858 | +0.16% |
| 2026-09-01 | 0.65749 | +0.28% |
| 2026-08-31 | 0.65564 | +0.46% |
| 2026-08-30 | 0.65263 | 0.00% |
| 2026-08-29 | 0.65263 | 0.00% |
| 2026-08-28 | 0.65263 | — |
INR to PHP conversion table
1 INR0.65206 PHP
5 INR3.2603 PHP
10 INR6.5206 PHP
25 INR16.3014 PHP
50 INR32.6028 PHP
100 INR65.2056 PHP
500 INR326.0282 PHP
1,000 INR652.0563 PHP
5,000 INR3,260.2816 PHP
10,000 INR6,520.5632 PHP
Get the INR/PHP rate in your app
One GET request returns the latest INR → 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/INR/PHP"fetch('https://rate-api.com/api/v1/pair/INR/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/PHP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "PHP"
},
"rate": 0.6521,
"timestamp": 1790429254,
"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 INRPhilippine Peso → Indian Rupee1.5336Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.