Convert INR to PKR
Indian Rupee → Pakistani Rupee
1 INR = 2.891463 PKR(1 PKR = 0.345846 INR)
Currency converter
1 INR =
2.8915 PKR
INR to PKR: last 30 days
Over the last 30 days, 1 INR traded between 2.8905 and 2.9377 PKR, averaging 2.9084 PKR. The INR/PKR rate is down 0.63% since 2026-08-28.
- 30-day high
- 2.9377
- 2026-09-05
- 30-day low
- 2.8905
- 2026-09-18
- 30-day average
- 2.9084
- Days with data: 30
- 30-day change
- -0.63%
- since 2026-08-28
2.9377
2.89052026-08-28 → 2026-09-26
| Date | 1 INR in PKR | Daily change |
|---|---|---|
| 2026-09-26 | 2.8915 | 0.00% |
| 2026-09-25 | 2.8915 | -0.22% |
| 2026-09-24 | 2.8977 | +0.02% |
| 2026-09-23 | 2.8972 | -0.14% |
| 2026-09-22 | 2.9012 | +0.29% |
| 2026-09-21 | 2.8927 | -0.01% |
| 2026-09-20 | 2.8929 | +0.03% |
| 2026-09-19 | 2.892 | +0.05% |
| 2026-09-18 | 2.8905 | -0.19% |
| 2026-09-17 | 2.8959 | +0.17% |
| 2026-09-16 | 2.891 | +0.02% |
| 2026-09-15 | 2.8905 | -0.44% |
| 2026-09-14 | 2.9033 | +0.09% |
| 2026-09-13 | 2.9006 | -0.17% |
| 2026-09-12 | 2.9056 | +0.12% |
| Date | 1 INR in PKR | Daily change |
|---|---|---|
| 2026-09-11 | 2.902 | -0.14% |
| 2026-09-10 | 2.906 | -0.22% |
| 2026-09-09 | 2.9125 | -0.47% |
| 2026-09-08 | 2.9263 | -0.32% |
| 2026-09-07 | 2.9356 | -0.01% |
| 2026-09-06 | 2.9359 | -0.06% |
| 2026-09-05 | 2.9377 | +0.03% |
| 2026-09-04 | 2.9368 | +0.17% |
| 2026-09-03 | 2.9318 | +0.34% |
| 2026-09-02 | 2.9218 | -0.04% |
| 2026-09-01 | 2.9231 | +0.09% |
| 2026-08-31 | 2.9204 | +0.40% |
| 2026-08-30 | 2.9088 | -0.04% |
| 2026-08-29 | 2.9099 | +0.01% |
| 2026-08-28 | 2.9097 | — |
INR to PKR conversion table
1 INR2.8915 PKR
5 INR14.4573 PKR
10 INR28.9146 PKR
25 INR72.2866 PKR
50 INR144.5732 PKR
100 INR289.1463 PKR
500 INR1,445.7315 PKR
1,000 INR2,891.463 PKR
5,000 INR14,457.315 PKR
10,000 INR28,914.63 PKR
Get the INR/PKR rate in your app
One GET request returns the latest INR → PKR 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/PKR"fetch('https://rate-api.com/api/v1/pair/INR/PKR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} PKR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/PKR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} PKR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/PKR');
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']} PKR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "PKR"
},
"rate": 2.8915,
"timestamp": 1790429426,
"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
PKR to INRPakistani Rupee → Indian Rupee0.34585Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.