Convert INR to XCD
Indian Rupee → East Caribbean Dollar
1 INR = 0.0281786 XCD(1 XCD = 35.4879 INR)
Currency converter
1 INR =
0.028179 XCD
INR to XCD: last 30 days
Over the last 30 days, 1 INR traded between 0.028137 and 0.028658 XCD, averaging 0.028352 XCD. The INR/XCD rate is down 0.72% since 2026-08-28.
- 30-day high
- 0.028658
- 2026-09-07
- 30-day low
- 0.028137
- 2026-09-24
- 30-day average
- 0.028352
- Days with data: 30
- 30-day change
- -0.72%
- since 2026-08-28
0.028658
0.0281372026-08-28 → 2026-09-26
| Date | 1 INR in XCD | Daily change |
|---|---|---|
| 2026-09-26 | 0.028179 | 0.00% |
| 2026-09-25 | 0.028179 | +0.15% |
| 2026-09-24 | 0.028137 | -0.23% |
| 2026-09-23 | 0.028201 | -0.43% |
| 2026-09-22 | 0.028323 | +0.25% |
| 2026-09-21 | 0.028252 | +0.30% |
| 2026-09-20 | 0.028167 | -0.07% |
| 2026-09-19 | 0.028186 | -0.00% |
| 2026-09-18 | 0.028187 | -0.02% |
| 2026-09-17 | 0.028193 | -0.05% |
| 2026-09-16 | 0.028206 | -0.02% |
| 2026-09-15 | 0.028211 | -0.42% |
| 2026-09-14 | 0.02833 | +0.26% |
| 2026-09-13 | 0.028256 | -0.09% |
| 2026-09-12 | 0.02828 | -0.16% |
| Date | 1 INR in XCD | Daily change |
|---|---|---|
| 2026-09-11 | 0.028325 | -0.12% |
| 2026-09-10 | 0.028358 | -0.37% |
| 2026-09-09 | 0.028464 | -0.29% |
| 2026-09-08 | 0.028547 | -0.39% |
| 2026-09-07 | 0.028658 | +0.27% |
| 2026-09-06 | 0.028581 | -0.07% |
| 2026-09-05 | 0.0286 | -0.14% |
| 2026-09-04 | 0.02864 | -0.03% |
| 2026-09-03 | 0.028649 | +0.50% |
| 2026-09-02 | 0.028507 | -0.02% |
| 2026-09-01 | 0.028513 | +0.43% |
| 2026-08-31 | 0.028392 | +0.27% |
| 2026-08-30 | 0.028314 | -0.06% |
| 2026-08-29 | 0.028331 | -0.18% |
| 2026-08-28 | 0.028382 | — |
INR to XCD conversion table
1 INR0.028179 XCD
5 INR0.14089 XCD
10 INR0.28179 XCD
25 INR0.70447 XCD
50 INR1.4089 XCD
100 INR2.8179 XCD
500 INR14.0893 XCD
1,000 INR28.1786 XCD
5,000 INR140.8931 XCD
10,000 INR281.7862 XCD
Get the INR/XCD rate in your app
One GET request returns the latest INR → XCD 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/XCD"fetch('https://rate-api.com/api/v1/pair/INR/XCD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} XCD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/XCD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} XCD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/XCD');
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']} XCD\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "XCD"
},
"rate": 0.0282,
"timestamp": 1790439659,
"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
XCD to INREast Caribbean Dollar → Indian Rupee35.4879Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.