Convert INR to PEN
Indian Rupee → Peruvian Sol
1 INR = 0.0355334 PEN(1 PEN = 28.142546 INR)
Currency converter
1 INR =
0.035533 PEN
INR to PEN: last 30 days
Over the last 30 days, 1 INR traded between 0.034961 and 0.035568 PEN, averaging 0.035286 PEN. The INR/PEN rate is up 1.12% since 2026-08-29.
- 30-day high
- 0.035568
- 2026-09-03
- 30-day low
- 0.034961
- 2026-09-16
- 30-day average
- 0.035286
- Days with data: 30
- 30-day change
- +1.12%
- since 2026-08-29
0.035568
0.0349612026-08-29 → 2026-09-27
| Date | 1 INR in PEN | Daily change |
|---|---|---|
| 2026-09-27 | 0.035533 | 0.00% |
| 2026-09-26 | 0.035533 | 0.00% |
| 2026-09-25 | 0.035533 | +0.68% |
| 2026-09-24 | 0.035293 | +0.58% |
| 2026-09-23 | 0.035089 | -0.47% |
| 2026-09-22 | 0.035253 | +0.08% |
| 2026-09-21 | 0.035226 | +0.08% |
| 2026-09-20 | 0.035198 | +0.01% |
| 2026-09-19 | 0.035196 | -0.03% |
| 2026-09-18 | 0.035206 | +0.02% |
| 2026-09-17 | 0.035198 | +0.68% |
| 2026-09-16 | 0.034961 | -0.16% |
| 2026-09-15 | 0.035018 | -0.45% |
| 2026-09-14 | 0.035174 | +0.20% |
| 2026-09-13 | 0.035104 | -0.01% |
| Date | 1 INR in PEN | Daily change |
|---|---|---|
| 2026-09-12 | 0.035107 | -0.01% |
| 2026-09-11 | 0.035109 | +0.03% |
| 2026-09-10 | 0.035098 | -0.43% |
| 2026-09-09 | 0.03525 | -0.40% |
| 2026-09-08 | 0.03539 | -0.33% |
| 2026-09-07 | 0.035507 | +0.03% |
| 2026-09-06 | 0.035498 | +0.04% |
| 2026-09-05 | 0.035483 | -0.03% |
| 2026-09-04 | 0.035494 | -0.21% |
| 2026-09-03 | 0.035568 | +0.38% |
| 2026-09-02 | 0.035434 | +0.03% |
| 2026-09-01 | 0.035424 | -0.04% |
| 2026-08-31 | 0.035438 | +0.86% |
| 2026-08-30 | 0.035136 | -0.01% |
| 2026-08-29 | 0.035139 | — |
INR to PEN conversion table
1 INR0.035533 PEN
5 INR0.17767 PEN
10 INR0.35533 PEN
25 INR0.88833 PEN
50 INR1.7767 PEN
100 INR3.5533 PEN
500 INR17.7667 PEN
1,000 INR35.5334 PEN
5,000 INR177.6669 PEN
10,000 INR355.3339 PEN
Get the INR/PEN rate in your app
One GET request returns the latest INR → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/INR/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "PEN"
},
"rate": 0.0355,
"timestamp": 1790470819,
"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
PEN to INRPeruvian Sol → Indian Rupee28.1425Convert INR to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.