Convert BYN to USD
Belarusian Ruble → US Dollar
1 BYN = 0.32851 USD(1 USD = 3.044044 BYN)
Currency converter
1 BYN =
0.32851 USD
BYN to USD: last 30 days
Over the last 30 days, 1 BYN traded between 0.32333 and 0.33208 USD, averaging 0.32806 USD. The BYN/USD rate is down 1.07% since 2026-08-28.
- 30-day high
- 0.33208
- 2026-08-28
- 30-day low
- 0.32333
- 2026-09-02
- 30-day average
- 0.32806
- Days with data: 30
- 30-day change
- -1.07%
- since 2026-08-28
0.33208
0.323332026-08-28 → 2026-09-26
| Date | 1 BYN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.32851 | 0.00% |
| 2026-09-25 | 0.32851 | -0.14% |
| 2026-09-24 | 0.32895 | -0.11% |
| 2026-09-23 | 0.32933 | -0.61% |
| 2026-09-22 | 0.33134 | +0.16% |
| 2026-09-21 | 0.33083 | -0.05% |
| 2026-09-20 | 0.331 | +0.17% |
| 2026-09-19 | 0.33045 | +0.44% |
| 2026-09-18 | 0.329 | +0.56% |
| 2026-09-17 | 0.32716 | -0.66% |
| 2026-09-16 | 0.32935 | +0.17% |
| 2026-09-15 | 0.32877 | -0.09% |
| 2026-09-14 | 0.32906 | -0.16% |
| 2026-09-13 | 0.32959 | +0.10% |
| 2026-09-12 | 0.32925 | +0.14% |
| Date | 1 BYN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.32879 | +0.69% |
| 2026-09-10 | 0.32654 | +0.38% |
| 2026-09-09 | 0.3253 | +0.03% |
| 2026-09-08 | 0.32521 | +0.20% |
| 2026-09-07 | 0.32457 | +0.00% |
| 2026-09-06 | 0.32455 | +0.02% |
| 2026-09-05 | 0.32449 | -0.05% |
| 2026-09-04 | 0.32466 | +0.22% |
| 2026-09-03 | 0.32394 | +0.19% |
| 2026-09-02 | 0.32333 | -0.90% |
| 2026-09-01 | 0.32627 | -1.11% |
| 2026-08-31 | 0.32994 | +0.06% |
| 2026-08-30 | 0.32975 | -0.50% |
| 2026-08-29 | 0.33139 | -0.21% |
| 2026-08-28 | 0.33208 | — |
BYN to USD conversion table
1 BYN0.32851 USD
5 BYN1.6426 USD
10 BYN3.2851 USD
25 BYN8.2128 USD
50 BYN16.4255 USD
100 BYN32.851 USD
500 BYN164.2552 USD
1,000 BYN328.5104 USD
5,000 BYN1,642.552 USD
10,000 BYN3,285.1041 USD
Get the BYN/USD rate in your app
One GET request returns the latest BYN → 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/BYN/USD"fetch('https://rate-api.com/api/v1/pair/BYN/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BYN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BYN/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BYN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BYN/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BYN = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "BYN",
"to": "USD"
},
"rate": 0.3285,
"timestamp": 1790432045,
"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 BYNUS Dollar → Belarusian Ruble3.044Convert BYN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.