Convert USD to IDR
US Dollar → Indonesian Rupiah
1 USD = 17,913.9 IDR(1 IDR = 0.0000558226 USD)
Currency converter
1 USD =
17,913.9 IDR
USD to IDR: last 30 days
Over the last 30 days, 1 USD traded between 17,476 and 17,932.7 IDR, averaging 17,714.882 IDR. The USD/IDR rate is up 1.11% since 2026-08-28.
- 30-day high
- 17,932.7
- 2026-09-24
- 30-day low
- 17,476
- 2026-09-09
- 30-day average
- 17,714.882
- Days with data: 30
- 30-day change
- +1.11%
- since 2026-08-28
17,932.7
17,4762026-08-28 → 2026-09-26
| Date | 1 USD in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 17,913.9 | 0.00% |
| 2026-09-25 | 17,913.9 | -0.10% |
| 2026-09-24 | 17,932.7 | +0.77% |
| 2026-09-23 | 17,794.952 | -0.14% |
| 2026-09-22 | 17,820 | -0.27% |
| 2026-09-21 | 17,869 | +0.26% |
| 2026-09-20 | 17,823 | 0.00% |
| 2026-09-19 | 17,823 | 0.00% |
| 2026-09-18 | 17,823 | +0.54% |
| 2026-09-17 | 17,727 | +0.32% |
| 2026-09-16 | 17,670 | -0.15% |
| 2026-09-15 | 17,697 | +0.21% |
| 2026-09-14 | 17,660 | +0.32% |
| 2026-09-13 | 17,603 | 0.00% |
| 2026-09-12 | 17,603 | 0.00% |
| Date | 1 USD in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 17,603 | +0.17% |
| 2026-09-10 | 17,574 | +0.56% |
| 2026-09-09 | 17,476 | -0.69% |
| 2026-09-08 | 17,597 | -0.28% |
| 2026-09-07 | 17,647 | +0.06% |
| 2026-09-06 | 17,636 | 0.00% |
| 2026-09-05 | 17,636 | 0.00% |
| 2026-09-04 | 17,636 | -0.06% |
| 2026-09-03 | 17,647 | -0.38% |
| 2026-09-02 | 17,715 | -0.17% |
| 2026-09-01 | 17,745 | +0.20% |
| 2026-08-31 | 17,710 | -0.04% |
| 2026-08-30 | 17,717 | 0.00% |
| 2026-08-29 | 17,717 | 0.00% |
| 2026-08-28 | 17,717 | — |
USD to IDR conversion table
1 USD17,913.9 IDR
5 USD89,569.499 IDR
10 USD179,139 IDR
25 USD447,847.5 IDR
50 USD895,694.99 IDR
100 USD1,791,390 IDR
500 USD8,956,949.9 IDR
1,000 USD17,913,900 IDR
5,000 USD89,569,499 IDR
10,000 USD179,138,999 IDR
Get the USD/IDR rate in your app
One GET request returns the latest USD → IDR 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/USD/IDR"fetch('https://rate-api.com/api/v1/pair/USD/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/IDR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "IDR"
},
"rate": 17913.8999,
"timestamp": 1790429360,
"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
IDR to USDIndonesian Rupiah → US Dollar0.000055823Convert USD to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.