Convert USD to AMD
US Dollar → Armenian Dram
1 USD = 363.14081 AMD(1 AMD = 0.00275375 USD)
Currency converter
1 USD =
363.1408 AMD
USD to AMD: last 30 days
Over the last 30 days, 1 USD traded between 362.7638 and 366.3598 AMD, averaging 363.8066 AMD. The USD/AMD rate is down 0.22% since 2026-08-28.
- 30-day high
- 366.3598
- 2026-08-31
- 30-day low
- 362.7638
- 2026-09-21
- 30-day average
- 363.8066
- Days with data: 30
- 30-day change
- -0.22%
- since 2026-08-28
366.3598
362.76382026-08-28 → 2026-09-26
| Date | 1 USD in AMD | Daily change |
|---|---|---|
| 2026-09-26 | 363.1408 | 0.00% |
| 2026-09-25 | 363.1408 | -0.22% |
| 2026-09-24 | 363.9458 | +0.10% |
| 2026-09-23 | 363.5655 | -0.00% |
| 2026-09-22 | 363.5793 | +0.22% |
| 2026-09-21 | 362.7638 | -0.19% |
| 2026-09-20 | 363.4447 | -0.00% |
| 2026-09-19 | 363.4476 | +0.13% |
| 2026-09-18 | 362.9806 | -0.46% |
| 2026-09-17 | 364.6451 | +0.24% |
| 2026-09-16 | 363.7675 | +0.26% |
| 2026-09-15 | 362.8121 | -0.10% |
| 2026-09-14 | 363.1889 | -0.04% |
| 2026-09-13 | 363.3477 | +0.09% |
| 2026-09-12 | 363.0306 | -0.33% |
| Date | 1 USD in AMD | Daily change |
|---|---|---|
| 2026-09-11 | 364.2218 | +0.19% |
| 2026-09-10 | 363.5368 | +0.15% |
| 2026-09-09 | 363.0103 | -0.24% |
| 2026-09-08 | 363.8806 | +0.01% |
| 2026-09-07 | 363.8383 | -0.17% |
| 2026-09-06 | 364.4729 | +0.00% |
| 2026-09-05 | 364.4722 | +0.22% |
| 2026-09-04 | 363.6574 | -0.11% |
| 2026-09-03 | 364.0522 | +0.01% |
| 2026-09-02 | 364.0146 | -0.04% |
| 2026-09-01 | 364.1632 | -0.60% |
| 2026-08-31 | 366.3598 | +0.41% |
| 2026-08-30 | 364.8816 | +0.00% |
| 2026-08-29 | 364.8779 | +0.25% |
| 2026-08-28 | 363.9572 | — |
USD to AMD conversion table
1 USD363.1408 AMD
5 USD1,815.7041 AMD
10 USD3,631.4081 AMD
25 USD9,078.5203 AMD
50 USD18,157.041 AMD
100 USD36,314.081 AMD
500 USD181,570.41 AMD
1,000 USD363,140.81 AMD
5,000 USD1,815,704.1 AMD
10,000 USD3,631,408.1 AMD
Get the USD/AMD rate in your app
One GET request returns the latest USD → AMD 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/AMD"fetch('https://rate-api.com/api/v1/pair/USD/AMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} AMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/AMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} AMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/AMD');
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']} AMD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "AMD"
},
"rate": 363.1408,
"timestamp": 1790429266,
"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
AMD to USDArmenian Dram → US Dollar0.0027538Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.