Convert USD to INR
US Dollar → Indian Rupee
1 USD = 95.817329 INR(1 INR = 0.0104365 USD)
Currency converter
1 USD =
95.8173 INR
USD to INR: last 30 days
Over the last 30 days, 1 USD traded between 94.49 and 95.96 INR, averaging 95.3858 INR. The USD/INR rate is up 0.45% since 2026-08-28.
- 30-day high
- 95.96
- 2026-09-15
- 30-day low
- 94.49
- 2026-09-03
- 30-day average
- 95.3858
- Days with data: 30
- 30-day change
- +0.45%
- since 2026-08-28
95.96
94.492026-08-28 → 2026-09-26
| Date | 1 USD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 95.8173 | 0.00% |
| 2026-09-25 | 95.8173 | -0.15% |
| 2026-09-24 | 95.9598 | +0.23% |
| 2026-09-23 | 95.741 | +0.16% |
| 2026-09-22 | 95.59 | -0.24% |
| 2026-09-21 | 95.82 | -0.06% |
| 2026-09-20 | 95.88 | 0.00% |
| 2026-09-19 | 95.88 | 0.00% |
| 2026-09-18 | 95.88 | -0.06% |
| 2026-09-17 | 95.94 | -0.02% |
| 2026-09-16 | 95.96 | 0.00% |
| 2026-09-15 | 95.96 | +0.42% |
| 2026-09-14 | 95.56 | 0.00% |
| 2026-09-13 | 95.56 | 0.00% |
| 2026-09-12 | 95.56 | 0.00% |
| Date | 1 USD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 95.56 | +0.13% |
| 2026-09-10 | 95.44 | +0.35% |
| 2026-09-09 | 95.11 | +0.30% |
| 2026-09-08 | 94.83 | +0.36% |
| 2026-09-07 | 94.49 | 0.00% |
| 2026-09-06 | 94.49 | 0.00% |
| 2026-09-05 | 94.49 | 0.00% |
| 2026-09-04 | 94.49 | 0.00% |
| 2026-09-03 | 94.49 | -0.51% |
| 2026-09-02 | 94.97 | +0.02% |
| 2026-09-01 | 94.95 | -0.23% |
| 2026-08-31 | 95.17 | -0.23% |
| 2026-08-30 | 95.39 | 0.00% |
| 2026-08-29 | 95.39 | 0.00% |
| 2026-08-28 | 95.39 | — |
USD to INR conversion table
1 USD95.8173 INR
5 USD479.0866 INR
10 USD958.1733 INR
25 USD2,395.4332 INR
50 USD4,790.8664 INR
100 USD9,581.7329 INR
500 USD47,908.664 INR
1,000 USD95,817.329 INR
5,000 USD479,086.64 INR
10,000 USD958,173.29 INR
Get the USD/INR rate in your app
One GET request returns the latest USD → 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/USD/INR"fetch('https://rate-api.com/api/v1/pair/USD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "INR"
},
"rate": 95.8173,
"timestamp": 1790429383,
"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 USDIndian Rupee → US Dollar0.010437Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.