Convert PLN to USD
Polish Złoty → US Dollar
1 PLN = 0.260831 USD(1 USD = 3.833903 PLN)
Currency converter
1 PLN =
0.26083 USD
PLN to USD: last 30 days
Over the last 30 days, 1 PLN traded between 0.25938 and 0.27001 USD, averaging 0.26615 USD. The PLN/USD rate is down 2.85% since 2026-08-28.
- 30-day high
- 0.27001
- 2026-09-09
- 30-day low
- 0.25938
- 2026-09-24
- 30-day average
- 0.26615
- Days with data: 30
- 30-day change
- -2.85%
- since 2026-08-28
0.27001
0.259382026-08-28 → 2026-09-26
| Date | 1 PLN in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.26083 | 0.00% |
| 2026-09-25 | 0.26083 | +0.56% |
| 2026-09-24 | 0.25938 | -0.52% |
| 2026-09-23 | 0.26073 | -1.10% |
| 2026-09-22 | 0.26364 | -0.12% |
| 2026-09-21 | 0.26396 | +0.50% |
| 2026-09-20 | 0.26263 | 0.00% |
| 2026-09-19 | 0.26263 | 0.00% |
| 2026-09-18 | 0.26263 | -0.31% |
| 2026-09-17 | 0.26345 | -0.73% |
| 2026-09-16 | 0.26539 | -0.18% |
| 2026-09-15 | 0.26587 | -0.06% |
| 2026-09-14 | 0.26604 | -0.74% |
| 2026-09-13 | 0.26802 | 0.00% |
| 2026-09-12 | 0.26802 | 0.00% |
| Date | 1 PLN in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.26802 | -0.28% |
| 2026-09-10 | 0.26877 | -0.46% |
| 2026-09-09 | 0.27001 | +0.39% |
| 2026-09-08 | 0.26898 | -0.24% |
| 2026-09-07 | 0.26964 | +0.11% |
| 2026-09-06 | 0.26935 | 0.00% |
| 2026-09-05 | 0.26935 | 0.00% |
| 2026-09-04 | 0.26935 | +0.33% |
| 2026-09-03 | 0.26846 | +0.32% |
| 2026-09-02 | 0.26761 | +0.01% |
| 2026-09-01 | 0.26759 | -0.13% |
| 2026-08-31 | 0.26793 | -0.21% |
| 2026-08-30 | 0.26849 | 0.00% |
| 2026-08-29 | 0.26849 | 0.00% |
| 2026-08-28 | 0.26849 | — |
PLN to USD conversion table
1 PLN0.26083 USD
5 PLN1.3042 USD
10 PLN2.6083 USD
25 PLN6.5208 USD
50 PLN13.0415 USD
100 PLN26.0831 USD
500 PLN130.4154 USD
1,000 PLN260.8308 USD
5,000 PLN1,304.1539 USD
10,000 PLN2,608.3078 USD
Get the PLN/USD rate in your app
One GET request returns the latest PLN → 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/PLN/USD"fetch('https://rate-api.com/api/v1/pair/PLN/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PLN = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PLN/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PLN = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PLN/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PLN = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "PLN",
"to": "USD"
},
"rate": 0.2608,
"timestamp": 1790432076,
"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 PLNUS Dollar → Polish Złoty3.8339Convert PLN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.