Convert GBP to USD
British Pound → US Dollar
1 GBP = 1.325237 USD(1 USD = 0.754582 GBP)
Currency converter
1 GBP =
1.3252 USD
GBP to USD: last 30 days
Over the last 30 days, 1 GBP traded between 1.322 and 1.3583 USD, averaging 1.3456 USD. The GBP/USD rate is down 2.43% since 2026-08-28.
- 30-day high
- 1.3583
- 2026-08-28
- 30-day low
- 1.322
- 2026-09-24
- 30-day average
- 1.3456
- Days with data: 30
- 30-day change
- -2.43%
- since 2026-08-28
1.3583
1.3222026-08-28 → 2026-09-26
| Date | 1 GBP in USD | Daily change |
|---|---|---|
| 2026-09-26 | 1.3252 | 0.00% |
| 2026-09-25 | 1.3252 | +0.25% |
| 2026-09-24 | 1.322 | -0.43% |
| 2026-09-23 | 1.3276 | -0.65% |
| 2026-09-22 | 1.3363 | -0.24% |
| 2026-09-21 | 1.3395 | +0.38% |
| 2026-09-20 | 1.3344 | 0.00% |
| 2026-09-19 | 1.3344 | 0.00% |
| 2026-09-18 | 1.3344 | -0.24% |
| 2026-09-17 | 1.3376 | -0.59% |
| 2026-09-16 | 1.3456 | -0.20% |
| 2026-09-15 | 1.3483 | -0.08% |
| 2026-09-14 | 1.3495 | -0.10% |
| 2026-09-13 | 1.3508 | 0.00% |
| 2026-09-12 | 1.3508 | 0.00% |
| Date | 1 GBP in USD | Daily change |
|---|---|---|
| 2026-09-11 | 1.3508 | -0.09% |
| 2026-09-10 | 1.352 | -0.33% |
| 2026-09-09 | 1.3565 | +0.14% |
| 2026-09-08 | 1.3546 | +0.11% |
| 2026-09-07 | 1.3531 | +0.01% |
| 2026-09-06 | 1.353 | 0.00% |
| 2026-09-05 | 1.353 | 0.00% |
| 2026-09-04 | 1.353 | +0.24% |
| 2026-09-03 | 1.3497 | +0.10% |
| 2026-09-02 | 1.3483 | -0.35% |
| 2026-09-01 | 1.3531 | -0.06% |
| 2026-08-31 | 1.3539 | -0.32% |
| 2026-08-30 | 1.3583 | 0.00% |
| 2026-08-29 | 1.3583 | 0.00% |
| 2026-08-28 | 1.3583 | — |
GBP to USD conversion table
1 GBP1.3252 USD
5 GBP6.6262 USD
10 GBP13.2524 USD
25 GBP33.1309 USD
50 GBP66.2618 USD
100 GBP132.5237 USD
500 GBP662.6184 USD
1,000 GBP1,325.2368 USD
5,000 GBP6,626.184 USD
10,000 GBP13,252.368 USD
Get the GBP/USD rate in your app
One GET request returns the latest GBP → 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/GBP/USD"fetch('https://rate-api.com/api/v1/pair/GBP/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "USD"
},
"rate": 1.3252,
"timestamp": 1790429369,
"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 GBPUS Dollar → British Pound0.75458Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.