Convert ARS to GBP
Argentine Peso → British Pound
1 ARS = 0.000496486 GBP(1 GBP = 2,014.1566 ARS)
Currency converter
1 ARS =
0.00049649 GBP
ARS to GBP: last 30 days
Over the last 30 days, 1 ARS traded between 0.00048687 and 0.00049902 GBP, averaging 0.00049172 GBP. The ARS/GBP rate is up 1.97% since 2026-08-28.
- 30-day high
- 0.00049902
- 2026-09-24
- 30-day low
- 0.00048687
- 2026-08-28
- 30-day average
- 0.00049172
- Days with data: 30
- 30-day change
- +1.97%
- since 2026-08-28
0.00049902
0.000486872026-08-28 → 2026-09-26
| Date | 1 ARS in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.00049649 | 0.00% |
| 2026-09-25 | 0.00049649 | -0.51% |
| 2026-09-24 | 0.00049902 | +0.32% |
| 2026-09-23 | 0.00049743 | +0.64% |
| 2026-09-22 | 0.00049428 | -0.07% |
| 2026-09-21 | 0.00049461 | -0.03% |
| 2026-09-20 | 0.00049476 | +0.15% |
| 2026-09-19 | 0.00049404 | -0.45% |
| 2026-09-18 | 0.00049629 | +0.43% |
| 2026-09-17 | 0.00049418 | +0.20% |
| 2026-09-16 | 0.00049319 | +0.28% |
| 2026-09-15 | 0.00049183 | +0.42% |
| 2026-09-14 | 0.00048978 | -0.19% |
| 2026-09-13 | 0.00049071 | +0.00% |
| 2026-09-12 | 0.0004907 | +0.27% |
| Date | 1 ARS in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.0004894 | +0.16% |
| 2026-09-10 | 0.0004886 | +0.18% |
| 2026-09-09 | 0.00048773 | -0.13% |
| 2026-09-08 | 0.00048836 | -0.28% |
| 2026-09-07 | 0.00048972 | -0.05% |
| 2026-09-06 | 0.00048995 | -0.04% |
| 2026-09-05 | 0.00049015 | +0.04% |
| 2026-09-04 | 0.00048997 | -0.09% |
| 2026-09-03 | 0.00049042 | +0.03% |
| 2026-09-02 | 0.00049029 | +0.09% |
| 2026-09-01 | 0.00048986 | +0.02% |
| 2026-08-31 | 0.00048977 | +0.23% |
| 2026-08-30 | 0.00048862 | +0.13% |
| 2026-08-29 | 0.00048797 | +0.23% |
| 2026-08-28 | 0.00048687 | — |
ARS to GBP conversion table
1 ARS0.00049649 GBP
5 ARS0.0024824 GBP
10 ARS0.0049649 GBP
25 ARS0.012412 GBP
50 ARS0.024824 GBP
100 ARS0.049649 GBP
500 ARS0.24824 GBP
1,000 ARS0.49649 GBP
5,000 ARS2.4824 GBP
10,000 ARS4.9649 GBP
Get the ARS/GBP rate in your app
One GET request returns the latest ARS → GBP 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/ARS/GBP?precision=6"fetch('https://rate-api.com/api/v1/pair/ARS/GBP?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ARS = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ARS/GBP?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ARS = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ARS/GBP?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ARS = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "ARS",
"to": "GBP"
},
"rate": 0.000496,
"timestamp": 1790435059,
"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
GBP to ARSBritish Pound → Argentine Peso2,014.1566Convert ARS to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.