Convert XCD to INR
East Caribbean Dollar → Indian Rupee
1 XCD = 35.4879 INR(1 INR = 0.0281786 XCD)
Currency converter
1 XCD =
35.4879 INR
XCD to INR: last 30 days
Over the last 30 days, 1 XCD traded between 34.894 and 35.5407 INR, averaging 35.2725 INR. The XCD/INR rate is up 0.72% since 2026-08-28.
- 30-day high
- 35.5407
- 2026-09-24
- 30-day low
- 34.894
- 2026-09-07
- 30-day average
- 35.2725
- Days with data: 30
- 30-day change
- +0.72%
- since 2026-08-28
35.5407
34.8942026-08-28 → 2026-09-26
| Date | 1 XCD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 35.4879 | 0.00% |
| 2026-09-25 | 35.4879 | -0.15% |
| 2026-09-24 | 35.5407 | +0.23% |
| 2026-09-23 | 35.4596 | +0.43% |
| 2026-09-22 | 35.3069 | -0.25% |
| 2026-09-21 | 35.3952 | -0.30% |
| 2026-09-20 | 35.5022 | +0.07% |
| 2026-09-19 | 35.4787 | +0.00% |
| 2026-09-18 | 35.4776 | +0.02% |
| 2026-09-17 | 35.4699 | +0.05% |
| 2026-09-16 | 35.454 | +0.02% |
| 2026-09-15 | 35.4468 | +0.42% |
| 2026-09-14 | 35.2978 | -0.26% |
| 2026-09-13 | 35.3912 | +0.09% |
| 2026-09-12 | 35.3601 | +0.16% |
| Date | 1 XCD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 35.3043 | +0.12% |
| 2026-09-10 | 35.2635 | +0.37% |
| 2026-09-09 | 35.1324 | +0.29% |
| 2026-09-08 | 35.0295 | +0.39% |
| 2026-09-07 | 34.894 | -0.27% |
| 2026-09-06 | 34.9884 | +0.07% |
| 2026-09-05 | 34.9645 | +0.14% |
| 2026-09-04 | 34.9163 | +0.03% |
| 2026-09-03 | 34.9047 | -0.50% |
| 2026-09-02 | 35.0795 | +0.02% |
| 2026-09-01 | 35.0716 | -0.42% |
| 2026-08-31 | 35.221 | -0.27% |
| 2026-08-30 | 35.3178 | +0.06% |
| 2026-08-29 | 35.2971 | +0.18% |
| 2026-08-28 | 35.2339 | — |
XCD to INR conversion table
1 XCD35.4879 INR
5 XCD177.4395 INR
10 XCD354.879 INR
25 XCD887.1975 INR
50 XCD1,774.395 INR
100 XCD3,548.79 INR
500 XCD17,743.95 INR
1,000 XCD35,487.9 INR
5,000 XCD177,439.5 INR
10,000 XCD354,879 INR
Get the XCD/INR rate in your app
One GET request returns the latest XCD → 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/XCD/INR"fetch('https://rate-api.com/api/v1/pair/XCD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XCD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XCD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XCD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XCD/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XCD = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "XCD",
"to": "INR"
},
"rate": 35.4879,
"timestamp": 1790432122,
"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 XCDIndian Rupee → East Caribbean Dollar0.028179Convert XCD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.