Convert GBP to ARS
British Pound → Argentine Peso
1 GBP = 2,021.7586 ARS(1 ARS = 0.000494619 GBP)
Currency converter
1 GBP =
2,021.7586 ARS
GBP to ARS: last 30 days
Over the last 30 days, 1 GBP traded between 2,003.9189 and 2,050.3068 ARS, averaging 2,032.9619 ARS. The GBP/ARS rate is down 1.34% since 2026-08-29.
- 30-day high
- 2,050.3068
- 2026-09-09
- 30-day low
- 2,003.9189
- 2026-09-24
- 30-day average
- 2,032.9619
- Days with data: 30
- 30-day change
- -1.34%
- since 2026-08-29
2,050.3068
2,003.91892026-08-29 → 2026-09-27
| Date | 1 GBP in ARS | Daily change |
|---|---|---|
| 2026-09-27 | 2,021.7586 | 0.00% |
| 2026-09-26 | 2,021.7586 | +0.38% |
| 2026-09-25 | 2,014.1566 | +0.51% |
| 2026-09-24 | 2,003.9189 | -0.32% |
| 2026-09-23 | 2,010.345 | -0.63% |
| 2026-09-22 | 2,023.1498 | +0.07% |
| 2026-09-21 | 2,021.7935 | +0.03% |
| 2026-09-20 | 2,021.191 | -0.15% |
| 2026-09-19 | 2,024.1287 | +0.45% |
| 2026-09-18 | 2,014.9681 | -0.42% |
| 2026-09-17 | 2,023.5403 | -0.20% |
| 2026-09-16 | 2,027.609 | -0.28% |
| 2026-09-15 | 2,033.2354 | -0.42% |
| 2026-09-14 | 2,041.7149 | +0.19% |
| 2026-09-13 | 2,037.8554 | -0.00% |
| Date | 1 GBP in ARS | Daily change |
|---|---|---|
| 2026-09-12 | 2,037.9041 | -0.27% |
| 2026-09-11 | 2,043.3231 | -0.16% |
| 2026-09-10 | 2,046.6647 | -0.18% |
| 2026-09-09 | 2,050.3068 | +0.13% |
| 2026-09-08 | 2,047.6905 | +0.28% |
| 2026-09-07 | 2,041.9645 | +0.05% |
| 2026-09-06 | 2,041.0173 | +0.04% |
| 2026-09-05 | 2,040.1989 | -0.04% |
| 2026-09-04 | 2,040.9267 | +0.09% |
| 2026-09-03 | 2,039.078 | -0.03% |
| 2026-09-02 | 2,039.6276 | -0.09% |
| 2026-09-01 | 2,041.393 | -0.02% |
| 2026-08-31 | 2,041.7782 | -0.23% |
| 2026-08-30 | 2,046.5666 | -0.13% |
| 2026-08-29 | 2,049.2922 | — |
GBP to ARS conversion table
1 GBP2,021.7586 ARS
5 GBP10,108.793 ARS
10 GBP20,217.586 ARS
25 GBP50,543.966 ARS
50 GBP101,087.93 ARS
100 GBP202,175.86 ARS
500 GBP1,010,879.3 ARS
1,000 GBP2,021,758.6 ARS
5,000 GBP10,108,793 ARS
10,000 GBP20,217,586 ARS
Get the GBP/ARS rate in your app
One GET request returns the latest GBP → ARS 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/ARS"fetch('https://rate-api.com/api/v1/pair/GBP/ARS', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ARS`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ARS",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ARS")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ARS');
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']} ARS\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ARS"
},
"rate": 2021.7586,
"timestamp": 1790470807,
"date": "2026-09-27"
}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
ARS to GBPArgentine Peso → British Pound0.00049462Convert GBP to other currencies
Convert other currencies to ARS
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.