Convert GBP to DOP
British Pound → Dominican Peso
1 GBP = 78.729477 DOP(1 DOP = 0.0127017 GBP)
Currency converter
1 GBP =
78.7295 DOP
GBP to DOP: last 30 days
Over the last 30 days, 1 GBP traded between 78.4306 and 80.1756 DOP, averaging 79.4218 DOP. The GBP/DOP rate is down 1.40% since 2026-08-28.
- 30-day high
- 80.1756
- 2026-09-08
- 30-day low
- 78.4306
- 2026-09-17
- 30-day average
- 79.4218
- Days with data: 30
- 30-day change
- -1.40%
- since 2026-08-28
80.1756
78.43062026-08-28 → 2026-09-26
| Date | 1 GBP in DOP | Daily change |
|---|---|---|
| 2026-09-26 | 78.7295 | 0.00% |
| 2026-09-25 | 78.7295 | -0.20% |
| 2026-09-24 | 78.8862 | -0.15% |
| 2026-09-23 | 79.006 | +0.13% |
| 2026-09-22 | 78.9029 | +0.07% |
| 2026-09-21 | 78.8476 | +0.08% |
| 2026-09-20 | 78.7876 | +0.02% |
| 2026-09-19 | 78.7752 | -0.32% |
| 2026-09-18 | 79.0306 | +0.76% |
| 2026-09-17 | 78.4306 | -1.37% |
| 2026-09-16 | 79.5241 | +0.04% |
| 2026-09-15 | 79.4949 | -0.29% |
| 2026-09-14 | 79.7275 | -0.11% |
| 2026-09-13 | 79.813 | -0.01% |
| 2026-09-12 | 79.8191 | +0.39% |
| Date | 1 GBP in DOP | Daily change |
|---|---|---|
| 2026-09-11 | 79.5078 | +0.07% |
| 2026-09-10 | 79.4537 | -0.57% |
| 2026-09-09 | 79.9096 | -0.33% |
| 2026-09-08 | 80.1756 | +0.08% |
| 2026-09-07 | 80.1091 | +0.40% |
| 2026-09-06 | 79.7897 | -0.37% |
| 2026-09-05 | 80.0837 | +0.00% |
| 2026-09-04 | 80.0824 | +1.14% |
| 2026-09-03 | 79.1799 | -0.25% |
| 2026-09-02 | 79.3789 | -0.44% |
| 2026-09-01 | 79.7279 | +0.05% |
| 2026-08-31 | 79.6858 | -0.05% |
| 2026-08-30 | 79.7256 | +0.29% |
| 2026-08-29 | 79.4913 | -0.45% |
| 2026-08-28 | 79.8492 | — |
GBP to DOP conversion table
1 GBP78.7295 DOP
5 GBP393.6474 DOP
10 GBP787.2948 DOP
25 GBP1,968.2369 DOP
50 GBP3,936.4738 DOP
100 GBP7,872.9477 DOP
500 GBP39,364.738 DOP
1,000 GBP78,729.477 DOP
5,000 GBP393,647.38 DOP
10,000 GBP787,294.77 DOP
Get the GBP/DOP rate in your app
One GET request returns the latest GBP → DOP 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/DOP"fetch('https://rate-api.com/api/v1/pair/GBP/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/DOP');
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']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "DOP"
},
"rate": 78.7295,
"timestamp": 1790437621,
"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
DOP to GBPDominican Peso → British Pound0.012702Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.