Convert USD to AFN
US Dollar → Afghan Afghani
1 USD = 64.586763 AFN(1 AFN = 0.015483 USD)
Currency converter
1 USD =
64.5868 AFN
USD to AFN: last 30 days
Over the last 30 days, 1 USD traded between 63.6603 and 65.9993 AFN, averaging 65.0701 AFN. The USD/AFN rate is down 1.40% since 2026-08-29.
- 30-day high
- 65.9993
- 2026-09-07
- 30-day low
- 63.6603
- 2026-09-19
- 30-day average
- 65.0701
- Days with data: 30
- 30-day change
- -1.40%
- since 2026-08-29
65.9993
63.66032026-08-29 → 2026-09-27
| Date | 1 USD in AFN | Daily change |
|---|---|---|
| 2026-09-27 | 64.5868 | 0.00% |
| 2026-09-26 | 64.5868 | +0.91% |
| 2026-09-25 | 64.0071 | +0.04% |
| 2026-09-24 | 63.9837 | -1.51% |
| 2026-09-23 | 64.9664 | +0.24% |
| 2026-09-22 | 64.8077 | -0.19% |
| 2026-09-21 | 64.9287 | +0.30% |
| 2026-09-20 | 64.7335 | +1.69% |
| 2026-09-19 | 63.6603 | -2.06% |
| 2026-09-18 | 65.0004 | +0.21% |
| 2026-09-17 | 64.8613 | -0.14% |
| 2026-09-16 | 64.9512 | +0.08% |
| 2026-09-15 | 64.8976 | +0.70% |
| 2026-09-14 | 64.4483 | +0.13% |
| 2026-09-13 | 64.3654 | -2.18% |
| Date | 1 USD in AFN | Daily change |
|---|---|---|
| 2026-09-12 | 65.7999 | +0.64% |
| 2026-09-11 | 65.381 | -0.43% |
| 2026-09-10 | 65.6641 | +0.75% |
| 2026-09-09 | 65.1744 | -0.42% |
| 2026-09-08 | 65.4512 | -0.83% |
| 2026-09-07 | 65.9993 | +2.29% |
| 2026-09-06 | 64.519 | -1.86% |
| 2026-09-05 | 65.7435 | -0.22% |
| 2026-09-04 | 65.8885 | +0.16% |
| 2026-09-03 | 65.783 | -0.14% |
| 2026-09-02 | 65.8734 | -0.18% |
| 2026-09-01 | 65.9945 | +0.91% |
| 2026-08-31 | 65.3974 | +0.38% |
| 2026-08-30 | 65.1487 | -0.54% |
| 2026-08-29 | 65.5009 | — |
USD to AFN conversion table
1 USD64.5868 AFN
5 USD322.9338 AFN
10 USD645.8676 AFN
25 USD1,614.6691 AFN
50 USD3,229.3381 AFN
100 USD6,458.6763 AFN
500 USD32,293.381 AFN
1,000 USD64,586.763 AFN
5,000 USD322,933.81 AFN
10,000 USD645,867.63 AFN
Get the USD/AFN rate in your app
One GET request returns the latest USD → AFN 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/AFN"fetch('https://rate-api.com/api/v1/pair/USD/AFN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} AFN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/AFN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} AFN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/AFN');
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']} AFN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "AFN"
},
"rate": 64.5868,
"timestamp": 1790470781,
"date": "2026-09-27"
}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
AFN to USDAfghan Afghani → US Dollar0.015483Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.