Convert USD to WST
US Dollar → Samoan Tala
1 USD = 2.765491 WST(1 WST = 0.361599 USD)
Currency converter
1 USD =
2.7655 WST
USD to WST: last 30 days
Over the last 30 days, 1 USD traded between 2.689 and 2.7655 WST, averaging 2.7241 WST. The USD/WST rate is up 2.05% since 2026-08-28.
- 30-day high
- 2.7655
- 2026-09-25
- 30-day low
- 2.689
- 2026-09-08
- 30-day average
- 2.7241
- Days with data: 30
- 30-day change
- +2.05%
- since 2026-08-28
2.7655
2.6892026-08-28 → 2026-09-26
| Date | 1 USD in WST | Daily change |
|---|---|---|
| 2026-09-26 | 2.7655 | 0.00% |
| 2026-09-25 | 2.7655 | +0.50% |
| 2026-09-24 | 2.7518 | +1.08% |
| 2026-09-23 | 2.7223 | -0.49% |
| 2026-09-22 | 2.7358 | +0.48% |
| 2026-09-21 | 2.7227 | -1.00% |
| 2026-09-20 | 2.7503 | -0.00% |
| 2026-09-19 | 2.7503 | -0.16% |
| 2026-09-18 | 2.7548 | +0.82% |
| 2026-09-17 | 2.7324 | -0.18% |
| 2026-09-16 | 2.7375 | +0.22% |
| 2026-09-15 | 2.7315 | -0.16% |
| 2026-09-14 | 2.7359 | -0.00% |
| 2026-09-13 | 2.736 | +0.00% |
| 2026-09-12 | 2.736 | +1.06% |
| Date | 1 USD in WST | Daily change |
|---|---|---|
| 2026-09-11 | 2.7072 | +0.45% |
| 2026-09-10 | 2.6952 | -0.18% |
| 2026-09-09 | 2.7001 | +0.41% |
| 2026-09-08 | 2.689 | -0.11% |
| 2026-09-07 | 2.692 | -0.96% |
| 2026-09-06 | 2.7181 | +0.00% |
| 2026-09-05 | 2.7181 | -0.30% |
| 2026-09-04 | 2.7263 | +0.69% |
| 2026-09-03 | 2.7075 | +0.29% |
| 2026-09-02 | 2.6998 | -0.27% |
| 2026-09-01 | 2.7071 | -0.03% |
| 2026-08-31 | 2.7078 | -0.00% |
| 2026-08-30 | 2.7078 | +0.00% |
| 2026-08-29 | 2.7078 | -0.08% |
| 2026-08-28 | 2.71 | — |
USD to WST conversion table
1 USD2.7655 WST
5 USD13.8275 WST
10 USD27.6549 WST
25 USD69.1373 WST
50 USD138.2746 WST
100 USD276.5491 WST
500 USD1,382.7455 WST
1,000 USD2,765.491 WST
5,000 USD13,827.455 WST
10,000 USD27,654.91 WST
Get the USD/WST rate in your app
One GET request returns the latest USD → WST 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/WST"fetch('https://rate-api.com/api/v1/pair/USD/WST', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} WST`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/WST",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} WST")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/WST');
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']} WST\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "WST"
},
"rate": 2.7655,
"timestamp": 1790429339,
"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
WST to USDSamoan Tala → US Dollar0.3616Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.