Iranian Rial (IRR) ﷼
Iranian Rial exchange rates against major world currencies, checked hourly and updated as sources publish.
1 IRR = 0.000000727383 USD
1 IRR in other currencies
IRR to USDUS Dollar0.00000072738IRR to EUREuro0.00000063789IRR to GBPBritish Pound0.00000054887IRR to JPYJapanese Yen0.00011463IRR to CNYChinese Yuan0.0000048831IRR to CADCanadian Dollar0.0000010287IRR to AUDAustralian Dollar0.0000010347IRR to CHFSwiss Franc0.00000060248IRR to INRIndian Rupee0.000069696IRR to RUBRussian Ruble0.000061837
Convert to IRR
USD to IRRUS Dollar1,374,792.3EUR to IRREuro1,567,675.7GBP to IRRBritish Pound1,821,925.4JPY to IRRJapanese Yen8,723.8492CNY to IRRChinese Yuan204,788.4CAD to IRRCanadian Dollar972,081.42AUD to IRRAustralian Dollar966,507.83CHF to IRRSwiss Franc1,659,794.3INR to IRRIndian Rupee14,348.055RUB to IRRRussian Ruble16,171.542
Get IRR rates in your app
One GET request returns every rate against IRR as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=IRR"fetch('https://rate-api.com/api/v1/latest?base=IRR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 IRR = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=IRR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 IRR = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=IRR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 IRR = {$data['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.