Convert USD to PAB
US Dollar → Panamanian Balboa
1 USD = 1 PAB(1 PAB = 1 USD)
Currency converter
1 USD =
1 PAB
USD to PAB: last 30 days
Over the last 30 days, 1 USD traded between 0.99983 and 1 PAB, averaging 0.99999 PAB. The USD/PAB rate has not changed since 2026-08-28.
- 30-day high
- 1
- 2026-08-28
- 30-day low
- 0.99983
- 2026-09-18
- 30-day average
- 0.99999
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
1
0.999832026-08-28 → 2026-09-26
| Date | 1 USD in PAB | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | 0.00% |
| 2026-09-22 | 1 | 0.00% |
| 2026-09-21 | 1 | 0.00% |
| 2026-09-20 | 1 | 0.00% |
| 2026-09-19 | 1 | +0.02% |
| 2026-09-18 | 0.99983 | -0.02% |
| 2026-09-17 | 1 | 0.00% |
| 2026-09-16 | 1 | 0.00% |
| 2026-09-15 | 1 | 0.00% |
| 2026-09-14 | 1 | 0.00% |
| 2026-09-13 | 1 | 0.00% |
| 2026-09-12 | 1 | 0.00% |
| Date | 1 USD in PAB | Daily change |
|---|---|---|
| 2026-09-11 | 1 | 0.00% |
| 2026-09-10 | 1 | 0.00% |
| 2026-09-09 | 1 | 0.00% |
| 2026-09-08 | 1 | 0.00% |
| 2026-09-07 | 1 | 0.00% |
| 2026-09-06 | 1 | 0.00% |
| 2026-09-05 | 1 | 0.00% |
| 2026-09-04 | 1 | 0.00% |
| 2026-09-03 | 1 | 0.00% |
| 2026-09-02 | 1 | 0.00% |
| 2026-09-01 | 1 | 0.00% |
| 2026-08-31 | 1 | 0.00% |
| 2026-08-30 | 1 | 0.00% |
| 2026-08-29 | 1 | 0.00% |
| 2026-08-28 | 1 | — |
USD to PAB conversion table
1 USD1 PAB
5 USD5 PAB
10 USD10 PAB
25 USD25 PAB
50 USD50 PAB
100 USD100 PAB
500 USD500 PAB
1,000 USD1,000 PAB
5,000 USD5,000 PAB
10,000 USD10,000 PAB
Get the USD/PAB rate in your app
One GET request returns the latest USD → PAB 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/PAB"fetch('https://rate-api.com/api/v1/pair/USD/PAB', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} PAB`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/PAB",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} PAB")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/PAB');
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']} PAB\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "PAB"
},
"rate": 1,
"timestamp": 1790429314,
"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
PAB to USDPanamanian Balboa → US Dollar1Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.