Convert USD to PLN
US Dollar → Polish Złoty
1 USD = 3.833903 PLN(1 PLN = 0.260831 USD)
Currency converter
1 USD =
3.8339 PLN
USD to PLN: last 30 days
Over the last 30 days, 1 USD traded between 3.7035 and 3.8553 PLN, averaging 3.7578 PLN. The USD/PLN rate is up 2.93% since 2026-08-28.
- 30-day high
- 3.8553
- 2026-09-24
- 30-day low
- 3.7035
- 2026-09-09
- 30-day average
- 3.7578
- Days with data: 30
- 30-day change
- +2.93%
- since 2026-08-28
3.8553
3.70352026-08-28 → 2026-09-26
| Date | 1 USD in PLN | Daily change |
|---|---|---|
| 2026-09-26 | 3.8339 | 0.00% |
| 2026-09-25 | 3.8339 | -0.55% |
| 2026-09-24 | 3.8553 | +0.52% |
| 2026-09-23 | 3.8353 | +1.11% |
| 2026-09-22 | 3.7931 | +0.12% |
| 2026-09-21 | 3.7885 | -0.50% |
| 2026-09-20 | 3.8076 | 0.00% |
| 2026-09-19 | 3.8076 | 0.00% |
| 2026-09-18 | 3.8076 | +0.31% |
| 2026-09-17 | 3.7958 | +0.74% |
| 2026-09-16 | 3.7681 | +0.18% |
| 2026-09-15 | 3.7612 | +0.06% |
| 2026-09-14 | 3.7588 | +0.75% |
| 2026-09-13 | 3.731 | 0.00% |
| 2026-09-12 | 3.731 | 0.00% |
| Date | 1 USD in PLN | Daily change |
|---|---|---|
| 2026-09-11 | 3.731 | +0.28% |
| 2026-09-10 | 3.7207 | +0.46% |
| 2026-09-09 | 3.7035 | -0.38% |
| 2026-09-08 | 3.7178 | +0.25% |
| 2026-09-07 | 3.7087 | -0.11% |
| 2026-09-06 | 3.7126 | 0.00% |
| 2026-09-05 | 3.7126 | 0.00% |
| 2026-09-04 | 3.7126 | -0.33% |
| 2026-09-03 | 3.7249 | -0.32% |
| 2026-09-02 | 3.7368 | -0.01% |
| 2026-09-01 | 3.7371 | +0.13% |
| 2026-08-31 | 3.7323 | +0.21% |
| 2026-08-30 | 3.7246 | 0.00% |
| 2026-08-29 | 3.7246 | 0.00% |
| 2026-08-28 | 3.7246 | — |
USD to PLN conversion table
1 USD3.8339 PLN
5 USD19.1695 PLN
10 USD38.339 PLN
25 USD95.8476 PLN
50 USD191.6952 PLN
100 USD383.3903 PLN
500 USD1,916.9517 PLN
1,000 USD3,833.9034 PLN
5,000 USD19,169.517 PLN
10,000 USD38,339.034 PLN
Get the USD/PLN rate in your app
One GET request returns the latest USD → PLN 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/PLN"fetch('https://rate-api.com/api/v1/pair/USD/PLN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} PLN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/PLN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} PLN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/PLN');
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']} PLN\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "PLN"
},
"rate": 3.8339,
"timestamp": 1790429332,
"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
PLN to USDPolish Złoty → US Dollar0.26083Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.