Converts UK imperial gallons to liters with precise calculations. Access via MCP in Cursor or Windsurf for instant conversions, or call GET /v1/convert/volume/gal-uk-to-l directly. Example: 5 UK gallons = 22.7305 liters. Uses the exact conversion factor of 4.54609 liters per UK gallon, ensuring accuracy for fuel calculations and engineering applications.
curl "https://tinyfn.io/v1/convert/volume/gal-uk-to-l" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/convert/volume/gal-uk-to-l', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/convert/volume/gal-uk-to-l',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's conversion tools:
{
"mcpServers": {
"tinyfn-conversion": {
"url": "https://tinyfn.io/mcp/conversion",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
UK imperial gallons are larger: 1 UK gallon = 4.54609 liters vs 1 US gallon = 3.78541 liters. UK gallons are about 20% larger than US gallons.
Call the gallons-uk-to-liters tool with your value. In Cursor or Claude Code, the AI agent will return the precise conversion instantly without manual calculation.
Uses the official conversion factor 4.54609 liters per UK gallon, maintaining full decimal precision for engineering and scientific calculations.
Yes, accepts any numeric input including decimals. 2.5 UK gallons converts to exactly 11.36525 liters.
Common for fuel efficiency calculations, brewing recipes, pool volumes, and working with British specifications that use imperial measurements.
Get your free API key and start using Gallons Uk To Liters in seconds.
Get Free API Key