Convert INR to DOP
Indian Rupee → Dominican Peso
1 INR = 0.620012 DOP(1 DOP = 1.612873 INR)
Currency converter
1 INR =
0.62001 DOP
INR to DOP: last 30 days
Over the last 30 days, 1 INR traded between 0.61114 and 0.62658 DOP, averaging 0.61882 DOP. The INR/DOP rate is up 0.60% since 2026-08-28.
- 30-day high
- 0.62658
- 2026-09-07
- 30-day low
- 0.61114
- 2026-09-17
- 30-day average
- 0.61882
- Days with data: 30
- 30-day change
- +0.60%
- since 2026-08-28
0.62658
0.611142026-08-28 → 2026-09-26
| Date | 1 INR in DOP | Daily change |
|---|---|---|
| 2026-09-26 | 0.62001 | 0.00% |
| 2026-09-25 | 0.62001 | -0.30% |
| 2026-09-24 | 0.62186 | +0.05% |
| 2026-09-23 | 0.62156 | +0.63% |
| 2026-09-22 | 0.61769 | +0.55% |
| 2026-09-21 | 0.61432 | -0.24% |
| 2026-09-20 | 0.6158 | +0.02% |
| 2026-09-19 | 0.6157 | -0.32% |
| 2026-09-18 | 0.6177 | +1.07% |
| 2026-09-17 | 0.61114 | -0.77% |
| 2026-09-16 | 0.61588 | +0.24% |
| 2026-09-15 | 0.6144 | -0.62% |
| 2026-09-14 | 0.61826 | -0.01% |
| 2026-09-13 | 0.61831 | -0.01% |
| 2026-09-12 | 0.61836 | +0.39% |
| Date | 1 INR in DOP | Daily change |
|---|---|---|
| 2026-09-11 | 0.61594 | +0.03% |
| 2026-09-10 | 0.61574 | -0.59% |
| 2026-09-09 | 0.61938 | -0.77% |
| 2026-09-08 | 0.62417 | -0.39% |
| 2026-09-07 | 0.62658 | +0.39% |
| 2026-09-06 | 0.62411 | -0.37% |
| 2026-09-05 | 0.62641 | +0.00% |
| 2026-09-04 | 0.6264 | +0.89% |
| 2026-09-03 | 0.62085 | +0.15% |
| 2026-09-02 | 0.61991 | -0.10% |
| 2026-09-01 | 0.62056 | +0.34% |
| 2026-08-31 | 0.61843 | +0.50% |
| 2026-08-30 | 0.61534 | +0.29% |
| 2026-08-29 | 0.61353 | -0.45% |
| 2026-08-28 | 0.61629 | — |
INR to DOP conversion table
1 INR0.62001 DOP
5 INR3.1001 DOP
10 INR6.2001 DOP
25 INR15.5003 DOP
50 INR31.0006 DOP
100 INR62.0012 DOP
500 INR310.0058 DOP
1,000 INR620.0116 DOP
5,000 INR3,100.058 DOP
10,000 INR6,200.1161 DOP
Get the INR/DOP rate in your app
One GET request returns the latest INR → DOP 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/DOP"fetch('https://rate-api.com/api/v1/pair/INR/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/DOP');
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']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "DOP"
},
"rate": 0.62,
"timestamp": 1790437657,
"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
DOP to INRDominican Peso → Indian Rupee1.6129Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.