Unit Converter
Pricing
from $0.01 / 1,000 results
Unit Converter
Convert any value between units of length, weight, temperature, volume, area, speed, time, data, pressure, energy, power, angle, and frequency. Give a value and a unit, get the result in one unit or every unit in that category. No API key, pure offline, always reliable.
Pricing
from $0.01 / 1,000 results
Rating
0.0
(0)
Developer
Mangudäi
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
5 days ago
Last modified
Categories
Share
Convert any number between units of measurement without an API key. Give a value and a source unit, and get the result in a single target unit or in every unit of the same category. Everything runs offline from exact conversion factors, so there is nothing to rate limit and nothing to break.
What it does
Send one or more conversion requests. For each one you provide a value and a from unit. Add a to unit to convert to that single unit. Leave to empty and the actor converts to every unit in the matching category. Units are auto-detected, so you never pick a category by hand.
Supported categories and a sample of their units:
- length: meter, kilometer, centimeter, millimeter, mile, yard, foot, inch, nautical mile
- weight and mass: kilogram, gram, milligram, metric ton, pound, ounce, stone, US ton, long ton
- temperature: Celsius, Fahrenheit, Kelvin, Rankine
- volume: liter, milliliter, cubic meter, US gallon, quart, pint, cup, fluid ounce, tablespoon, teaspoon, imperial gallon
- area: square meter, square kilometer, hectare, acre, square mile, square foot, square inch, square yard
- speed: meter per second, kilometer per hour, mile per hour, foot per second, knot
- time: second, millisecond, minute, hour, day, week, month, year
- digital storage: byte, bit, kilobyte, megabyte, gigabyte, terabyte, petabyte, plus binary kibibyte to tebibyte
- pressure: pascal, kilopascal, bar, psi, atmosphere, mmHg, torr
- energy: joule, kilojoule, calorie, kilocalorie, watt hour, kilowatt hour, BTU, foot pound
- power: watt, kilowatt, megawatt, horsepower, metric horsepower
- angle: degree, radian, gradian, arcminute, arcsecond, turn
- frequency: hertz, kilohertz, megahertz, gigahertz, rpm
Input
conversions: a list of objects. Each needsvalue(a number) andfrom(a unit). Optionaltopicks a single target unit; omit it to get the whole category.precision: decimal places to round to, 0 to 15. Default 6.
Units accept short symbols or full names. km, kilometer, kilometre, and kilometers all resolve to the same unit. Temperature accepts C, F, K, celsius, fahrenheit, and similar.
Example input:
{"conversions": [{ "value": 100, "from": "km", "to": "mi" },{ "value": 72, "from": "F" },{ "value": 5, "from": "kg", "to": "lb" },{ "value": 1, "from": "GB", "to": "MB" }],"precision": 6}
Output
One row per target unit. Each row has:
inputValue: the value you sentfromUnit,fromUnitName: source unit symbol and full namecategory: the detected category, for example length or temperaturetoUnit,toUnitName: target unit symbol and full nameresult: the converted number, rounded to your precisionformatted: a ready-to-read string like100 km = 62.137119 mierror: null on success, or a short message for an unknown unit or a cross-category request
Results export to JSON, CSV, or Excel from the dataset.
Why it stays reliable
There is no third-party API, no key, and no login. Conversions come from fixed, standardized factors held in the code, so the same input always gives the same answer.