Best Free Unit Converter

Convert length, weight, temperature, volume, area, speed, data and time — instantly, free.

Pick a category and two units — type in either box and the other updates instantly. Click a result to copy it. Everything runs in your browser.
100% free No signup No watermark Files processed in memory, never stored
Go Pro for the best AI models — image, video and chat — plus bigger uploads, priority in the queue and no waiting. Upgrade to Pro
Love best.free? Share it

How it works

  1. Pick a category. Choose length, weight, temperature, volume, area, speed, data or time.
  2. Enter the value and units. Type the amount and choose the units to convert from and to.
  3. Read the result. The converted value appears instantly, with no rounding surprises.

About this tool

Unit Converter handles the everyday conversions across eight categories: length, weight, temperature, volume, area, speed, data size and time. Pick a category, enter a value, and choose the units to go from and to — metric to imperial or the reverse. The factors are exact where a standard defines them (an inch is exactly 2.54 cm), and temperature is handled with the proper formulas rather than a single ratio. It runs instantly and stores nothing.

What people use it for

  • Convert miles to kilometres or pounds to kilograms
  • Switch a recipe between cups, millilitres and ounces
  • Convert °F to °C correctly (not with a ratio)
  • Work out file sizes between MB, MiB and GB

Developer API

Automate this tool from your own code. Send a POST request to the endpoint below and get the same result the web tool produces. It is rate-limited per IP and needs no signup — API keys for higher limits are coming.

POST https://best.free/api/tools/unit-converter/
Parameter Example Required Notes
category length Yes length/weight/temperature/volume/area/speed/data/time.
value 10 Yes
from mi Yes Source unit (e.g. mi, kg, C).
to km Yes Target unit.
curl -X POST https://best.free/api/tools/unit-converter/ \
  -H 'Content-Type: application/json' \
  -d '{"category": "length", "value": 10, "from": "mi", "to": "km"}'
import requests

r = requests.post(
    "https://best.free/api/tools/unit-converter/",
    json={"category": "length", "value": 10, "from": "mi", "to": "km"},
)
print(r.json())
const r = await fetch("https://best.free/api/tools/unit-converter/", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({ category: "length", value: 10, from: "mi", to: "km" }),
});
const data = await r.json();
console.log(data);

Response: JSON with the converted value.

{"ok": true, "value": 16.09344, "formatted": "16.0934"}

Frequently asked questions

Eight: length, weight, temperature, volume, area, speed, data size and time, each with the common metric and imperial units.

Where a standard defines the relationship they are exact — an inch is exactly 2.54 cm, a pound exactly 0.453592 kg — so you get precise results, not rough approximations.

Temperature is not a simple ratio, so Celsius, Fahrenheit and Kelvin are converted with their proper formulas (including the 32° offset for Fahrenheit), giving correct results.

MB is 1,000,000 bytes (decimal) while MiB is 1,048,576 bytes (binary, 1024²). The data category includes both so you can convert between the marketing and the actual figures.

Yes. Pick any two units within a category in either order — km to miles or miles to km — and the conversion works both ways.

No. The conversion is calculated for your request and nothing is saved — there is no signup and no logging of the values you enter.

Yes. POST a JSON body to /api/tools/unit-converter/ and you get a JSON response back — the same engine the web tool uses, so results are identical. It is rate-limited per IP like the web version and needs no signup; API keys for higher limits are coming. See the API section above for ready-to-run curl, Python and JavaScript examples.

Yes — Unit Converter is completely free, with no watermark on the output and no credit card required.

Yes. It runs in your browser, so Unit Converter works on phones and tablets as well as desktop — there is no app to install.

No. Unit Converter works with no signup at all; an optional free account only exists to unlock higher usage limits.

Related tools

Rate this page
5.0/5 (0)

What could we improve? Your feedback helps us fix issues.