REST API · Real-Time · Free Tier

ARS to INR Exchange Rate API

Convert Argentine Peso to Indian Rupee programmatically. Mid-market rates from Reuters, updated every 60 seconds.

ARS → INR
Argentine Peso to Indian Rupee
Loading…
LIVE
Mid-market rate · Source: Reuters/Refinitiv · Updated every 60s ·

Start Using the ARS/INR API

Create a free account and get your API key in seconds. No credit card required.

Get Free API Key →

API Request & Response

Get the ARS/INR rate with a single API call.

Request
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/v1/rates?source=ARS&target=INR"
Response · 200 OK
{
  "source": "ARS",
  "target": "INR",
  "rate": 0.2514,
  "timestamp": "2026-05-13T12:00:00Z"
}

Code Examples

Copy-paste integration for ARS to INR conversion.

curl -s -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/v1/rates?source=ARS&target=INR" | jq .
const response = await fetch(
  "https://exchange-rateapi.com/api/v1/rates?source=ARS&target=INR",
  { headers: { "Authorization": `Bearer ${API_KEY}` } }
);
const data = await response.json();
console.log(`ARS/INR: ${data.rate}`);
import requests

response = requests.get(
    "https://exchange-rateapi.com/api/v1/rates",
    params={"source": "ARS", "target": "INR"},
    headers={"Authorization": f"Bearer {API_KEY}"}
)
data = response.json()
print(f"ARS/INR: {data['rate']}")
$ch = curl_init();
curl_setopt_array($ch, [
    CURLOPT_URL => "https://exchange-rateapi.com/api/v1/rates?source=ARS&target=INR",
    CURLOPT_HTTPHEADER => ["Authorization: Bearer " . $apiKey],
    CURLOPT_RETURNTRANSFER => true,
]);
$data = json_decode(curl_exec($ch), true);
echo "ARS/INR: " . $data['rate'];
JavaScript SDK
// npm install @exchangerateapi/sdk
import { ExchangeRateAPI } from '@exchangerateapi/sdk';

const api = new ExchangeRateAPI('YOUR_API_KEY');
const rate = await api.latest('ARS', 'INR');
console.log(rate); // 0.2514
Python SDK
# pip install exchangerateapi
from exchange_rateapi import ExchangeRateAPI

api = ExchangeRateAPI("YOUR_API_KEY")
rate = api.get_rate("ARS", "INR")
print(rate)  # 0.2514

Historical ARS/INR Rates via API

Retrieve historical exchange rate data for trend analysis, backtesting, and reporting.

Historical Rates Endpoint
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://exchange-rateapi.com/api/historical-rates?source=ARS&target=INR&period=30d"
📅

1D · Hourly

Hourly snapshots for the past 24 hours

📈

7D / 30D · Daily

Daily closing rates for weekly and monthly views

📆

1Y · Daily

Full year of daily rates for long-term trends

Why Use Our ARS/INR API

60-Second Updates

Real-time interbank rates from Reuters/Refinitiv

🔒

Simple Bearer Auth

One API key, one header. Start in seconds

🌐

<50ms Globally

Cloudflare edge network in 300+ cities

📦

Official SDKs

JavaScript, Python, PHP, and React

💰

Mid-Market Rates

No markup, no spread, no hidden fees

🆕

Free Tier

300 requests/month. No credit card required

ARS/INR API — FAQ

Send a GET request to https://exchange-rateapi.com/api/v1/rates?source=ARS&target=INR with your API key in the Authorization: Bearer header. The JSON response includes the current mid-market rate.
Yes. The free tier includes 300 requests per month for all 160+ currencies, including ARS/INR. No credit card required. Paid plans start at &inro;4.99/month for 5,000 requests.
Every 60 seconds. Rates are sourced from Reuters/Refinitiv interbank feeds and represent the mid-market rate — the midpoint between buy and sell prices with no markup.
Yes. Use the /api/historical-rates endpoint with period=1d, 7d, 30d, or 1y. Custom date ranges are available on paid plans with from and to parameters.
Yes. Add the amount parameter: ?source=ARS&target=INR&amount=1000. The response includes both the rate and the converted amount.
All official SDKs: JavaScript (npm install @exchangerateapi/sdk), Python (pip install exchangerateapi), PHP (composer require exchangerateapi/sdk), and React.

Related Currency Pair APIs

View all currency pair APIs →