Convert PEN to INR
Peruvian Sol → Indian Rupee
1 PEN = 28.142546 INR(1 INR = 0.0355334 PEN)
Currency converter
1 PEN =
28.1425 INR
PEN to INR: last 30 days
Over the last 30 days, 1 PEN traded between 28.1154 and 28.6035 INR, averaging 28.351 INR. The PEN/INR rate is down 1.14% since 2026-08-28.
- 30-day high
- 28.6035
- 2026-09-16
- 30-day low
- 28.1154
- 2026-09-03
- 30-day average
- 28.351
- Days with data: 30
- 30-day change
- -1.14%
- since 2026-08-28
28.6035
28.11542026-08-28 → 2026-09-26
| Date | 1 PEN in INR | Daily change |
|---|---|---|
| 2026-09-26 | 28.1425 | 0.00% |
| 2026-09-25 | 28.1425 | -0.68% |
| 2026-09-24 | 28.3339 | -0.58% |
| 2026-09-23 | 28.4989 | +0.47% |
| 2026-09-22 | 28.3662 | -0.08% |
| 2026-09-21 | 28.3884 | -0.08% |
| 2026-09-20 | 28.4106 | -0.01% |
| 2026-09-19 | 28.4125 | +0.03% |
| 2026-09-18 | 28.4044 | -0.02% |
| 2026-09-17 | 28.4103 | -0.68% |
| 2026-09-16 | 28.6035 | +0.16% |
| 2026-09-15 | 28.5569 | +0.45% |
| 2026-09-14 | 28.4298 | -0.20% |
| 2026-09-13 | 28.4865 | +0.01% |
| 2026-09-12 | 28.4844 | +0.01% |
| Date | 1 PEN in INR | Daily change |
|---|---|---|
| 2026-09-11 | 28.4825 | -0.03% |
| 2026-09-10 | 28.4919 | +0.43% |
| 2026-09-09 | 28.3686 | +0.40% |
| 2026-09-08 | 28.2562 | +0.33% |
| 2026-09-07 | 28.1633 | -0.03% |
| 2026-09-06 | 28.1705 | -0.04% |
| 2026-09-05 | 28.1828 | +0.03% |
| 2026-09-04 | 28.1734 | +0.21% |
| 2026-09-03 | 28.1154 | -0.38% |
| 2026-09-02 | 28.2217 | -0.03% |
| 2026-09-01 | 28.2293 | +0.04% |
| 2026-08-31 | 28.2184 | -0.85% |
| 2026-08-30 | 28.4608 | +0.01% |
| 2026-08-29 | 28.4587 | -0.03% |
| 2026-08-28 | 28.4665 | — |
PEN to INR conversion table
1 PEN28.1425 INR
5 PEN140.7127 INR
10 PEN281.4255 INR
25 PEN703.5637 INR
50 PEN1,407.1273 INR
100 PEN2,814.2546 INR
500 PEN14,071.273 INR
1,000 PEN28,142.546 INR
5,000 PEN140,712.73 INR
10,000 PEN281,425.46 INR
Get the PEN/INR rate in your app
One GET request returns the latest PEN → INR 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/PEN/INR"fetch('https://rate-api.com/api/v1/pair/PEN/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "INR"
},
"rate": 28.1425,
"timestamp": 1790435155,
"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
INR to PENIndian Rupee → Peruvian Sol0.035533Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.