Best Free Kushandura kwechimiro
Kushandura kureba, muviri, tembiricha, huwandu, nzvimbo, speed, data uye nguva - panguva imwe chete, pasina.
Maitiro ekushanda
- Choose a category. Choose length, weight, temperature, volume, area, speed, data or time.
- Ingizai mari nezvikamu. Type mari uye sarudza zviuru kuti convert from uye to.
- Onawo chikonzero. The converted kukosha anoonekwa panguva imwe chete, pasina rounding zvishamiso.
Nezve iyi chirongwa
Unit Converter anobata mazuva ano kuchinja pakati 8 categories: urefu, muviri, tembiricha, mvura, mvura, nzvimbo, simba, data size uye nguva. Pick a category, nyora mashoko, uye sarudza zvikwata kuenda kubva uye kuenda - metric kuti imperial kana vice versa. 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.
Chii vanhu vanoshandisa kuti
- Kushandura makiromita kuenda kumakiromita kana ma pounds kuenda kumakilograma
- Kuchinjana kwechikafu pakati pecups, millilitres neounces
- Convert °F to °C correctly (not with a ratio)
- Kushanda kunze kwefaira mazita pakati peMB, MiB uye GB
Developer API
Automatize iyi chirongwa kubva yako pachako 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.
https://best.free/api/tools/unit-converter/
| Parameter | Mufananidzo | Anodarika | Nhoroondo |
|---|---|---|---|
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);
Kutenda: JSON with the converted value.
{"ok": true, "value": 16.09344, "formatted": "16.0934"}