Convert ARS to INR
Argentine Peso → Indian Rupee
1 ARS = 0.0630441 INR(1 INR = 15.861918 ARS)
Currency converter
1 ARS =
0.063044 INR
ARS to INR: last 30 days
Over the last 30 days, 1 ARS traded between 0.062545 and 0.063682 INR, averaging 0.063108 INR. The ARS/INR rate is down 0.06% since 2026-08-28.
- 30-day high
- 0.063682
- 2026-09-16
- 30-day low
- 0.062545
- 2026-09-03
- 30-day average
- 0.063108
- Days with data: 30
- 30-day change
- -0.06%
- since 2026-08-28
0.063682
0.0625452026-08-28 → 2026-09-26
| Date | 1 ARS in INR | Daily change |
|---|---|---|
| 2026-09-26 | 0.063044 | 0.00% |
| 2026-09-25 | 0.063044 | -0.41% |
| 2026-09-24 | 0.063303 | +0.12% |
| 2026-09-23 | 0.063227 | +0.14% |
| 2026-09-22 | 0.063139 | -0.54% |
| 2026-09-21 | 0.063483 | +0.29% |
| 2026-09-20 | 0.063301 | +0.15% |
| 2026-09-19 | 0.063209 | -0.45% |
| 2026-09-18 | 0.063497 | +0.12% |
| 2026-09-17 | 0.063421 | -0.41% |
| 2026-09-16 | 0.063682 | +0.07% |
| 2026-09-15 | 0.063635 | +0.75% |
| 2026-09-14 | 0.06316 | -0.29% |
| 2026-09-13 | 0.063342 | +0.00% |
| 2026-09-12 | 0.063341 | +0.27% |
| Date | 1 ARS in INR | Daily change |
|---|---|---|
| 2026-09-11 | 0.063173 | +0.20% |
| 2026-09-10 | 0.063048 | +0.20% |
| 2026-09-09 | 0.062925 | +0.31% |
| 2026-09-08 | 0.06273 | +0.19% |
| 2026-09-07 | 0.062612 | -0.04% |
| 2026-09-06 | 0.062638 | -0.04% |
| 2026-09-05 | 0.062663 | +0.04% |
| 2026-09-04 | 0.062641 | +0.15% |
| 2026-09-03 | 0.062545 | -0.38% |
| 2026-09-02 | 0.062781 | -0.25% |
| 2026-09-01 | 0.062936 | -0.27% |
| 2026-08-31 | 0.063108 | -0.32% |
| 2026-08-30 | 0.063308 | +0.13% |
| 2026-08-29 | 0.063224 | +0.23% |
| 2026-08-28 | 0.063081 | — |
ARS to INR conversion table
1 ARS0.063044 INR
5 ARS0.31522 INR
10 ARS0.63044 INR
25 ARS1.5761 INR
50 ARS3.1522 INR
100 ARS6.3044 INR
500 ARS31.522 INR
1,000 ARS63.0441 INR
5,000 ARS315.2204 INR
10,000 ARS630.4408 INR
Get the ARS/INR rate in your app
One GET request returns the latest ARS → 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/ARS/INR"fetch('https://rate-api.com/api/v1/pair/ARS/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ARS = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ARS/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ARS = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ARS/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ARS = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "ARS",
"to": "INR"
},
"rate": 0.063,
"timestamp": 1790432071,
"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 ARSIndian Rupee → Argentine Peso15.8619Convert ARS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.