Convert AFN to USD
Afghan Afghani → US Dollar
1 AFN = 0.0156233 USD(1 USD = 64.007146 AFN)
Currency converter
1 AFN =
0.015623 USD
AFN to USD: last 30 days
Over the last 30 days, 1 AFN traded between 0.015152 and 0.015708 USD, averaging 0.015363 USD. The AFN/USD rate is up 3.05% since 2026-08-28.
- 30-day high
- 0.015708
- 2026-09-19
- 30-day low
- 0.015152
- 2026-09-07
- 30-day average
- 0.015363
- Days with data: 30
- 30-day change
- +3.05%
- since 2026-08-28
0.015708
0.0151522026-08-28 → 2026-09-26
| Date | 1 AFN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.015623 | 0.00% |
| 2026-09-25 | 0.015623 | -0.04% |
| 2026-09-24 | 0.015629 | +1.54% |
| 2026-09-23 | 0.015393 | -0.24% |
| 2026-09-22 | 0.01543 | +0.19% |
| 2026-09-21 | 0.015402 | -0.30% |
| 2026-09-20 | 0.015448 | -1.66% |
| 2026-09-19 | 0.015708 | +2.11% |
| 2026-09-18 | 0.015385 | -0.21% |
| 2026-09-17 | 0.015418 | +0.14% |
| 2026-09-16 | 0.015396 | -0.08% |
| 2026-09-15 | 0.015409 | -0.69% |
| 2026-09-14 | 0.015516 | -0.13% |
| 2026-09-13 | 0.015536 | +2.23% |
| 2026-09-12 | 0.015198 | -0.64% |
| Date | 1 AFN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.015295 | +0.43% |
| 2026-09-10 | 0.015229 | -0.75% |
| 2026-09-09 | 0.015343 | +0.42% |
| 2026-09-08 | 0.015279 | +0.84% |
| 2026-09-07 | 0.015152 | -2.24% |
| 2026-09-06 | 0.015499 | +1.90% |
| 2026-09-05 | 0.015211 | +0.22% |
| 2026-09-04 | 0.015177 | -0.16% |
| 2026-09-03 | 0.015201 | +0.14% |
| 2026-09-02 | 0.015181 | +0.18% |
| 2026-09-01 | 0.015153 | -0.90% |
| 2026-08-31 | 0.015291 | -0.38% |
| 2026-08-30 | 0.01535 | +0.54% |
| 2026-08-29 | 0.015267 | +0.70% |
| 2026-08-28 | 0.015161 | — |
AFN to USD conversion table
1 AFN0.015623 USD
5 AFN0.078116 USD
10 AFN0.15623 USD
25 AFN0.39058 USD
50 AFN0.78116 USD
100 AFN1.5623 USD
500 AFN7.8116 USD
1,000 AFN15.6233 USD
5,000 AFN78.1163 USD
10,000 AFN156.2326 USD
Get the AFN/USD rate in your app
One GET request returns the latest AFN → USD 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/AFN/USD"fetch('https://rate-api.com/api/v1/pair/AFN/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AFN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AFN/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AFN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AFN/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AFN = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "AFN",
"to": "USD"
},
"rate": 0.0156,
"timestamp": 1790435206,
"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
USD to AFNUS Dollar → Afghan Afghani64.0071Convert AFN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.