Endpoint
GET https://requiems.xyz/v1/technology/convert/units
List Available Units
Returns all available unit conversion types grouped by measurement category
Response Example
{
"data": {
"length": ["cm", "ft", "in", "km", "m", "miles", "mm", "nmi", "yd"],
"weight": ["g", "kg", "lb", "mg", "oz", "stone", "t"],
"volume": ["cup", "fl_oz", "gal", "l", "ml", "pt", "qt", "tbsp", "tsp"],
"temperature": ["c", "f", "k"],
"area": ["acre", "cm2", "ft2", "ha", "in2", "km2", "m2", "mm2", "yd2"],
"speed": ["km_h", "knots", "m_s", "mph"]
},
"metadata": {
"timestamp": "2026-01-01T00:00:00Z"
}
}
Response Fields
| Field |
Type |
Description |
length |
array |
Available length units: millimeter (mm), centimeter (cm), meter (m), kilometer (km), inch (in), foot (ft), yard (yd), mile (miles), nautical mile (nmi) |
weight |
array |
Available weight units: milligram (mg), gram (g), kilogram (kg), metric ton (t), ounce (oz), pound (lb), stone (stone) |
volume |
array |
Available volume units: milliliter (ml), liter (l), teaspoon (tsp), tablespoon (tbsp), fluid ounce (fl_oz), cup (cup), pint (pt), quart (qt), gallon (gal) |
temperature |
array |
Available temperature units: celsius (c), fahrenheit (f), kelvin (k) |
area |
array |
Available area units: square millimeter (mm2), square centimeter (cm2), square meter (m2), square kilometer (km2), square inch (in2), square foot (ft2), square yard (yd2), acre (acre), hectare (ha) |
speed |
array |
Available speed units: meters per second (m_s), kilometers per hour (km_h), miles per hour (mph), knots (knots) |
1---2name: unit-conversion-get-units3description: Returns all available unit conversion types grouped by measurement category4---5
6## Endpoint
7
8**GET https://requiems.xyz/v1/technology/convert/units**
9
10## List Available Units
11
12Returns all available unit conversion types grouped by measurement category
13
14## Response Example
15
16```json
17{
18 "data": {
19 "length": ["cm", "ft", "in", "km", "m", "miles", "mm", "nmi", "yd"],
20 "weight": ["g", "kg", "lb", "mg", "oz", "stone", "t"],
21 "volume": ["cup", "fl_oz", "gal", "l", "ml", "pt", "qt", "tbsp", "tsp"],
22 "temperature": ["c", "f", "k"],
23 "area": ["acre", "cm2", "ft2", "ha", "in2", "km2", "m2", "mm2", "yd2"],
24 "speed": ["km_h", "knots", "m_s", "mph"]
25 },
26 "metadata": {
27 "timestamp": "2026-01-01T00:00:00Z"
28 }
29}
30```
31
32## Response Fields
33
34| Field | Type | Description |
35| ----- | ---- | ----------- |
36| `length` | array<string> | Available length units: millimeter (mm), centimeter (cm), meter (m), kilometer (km), inch (in), foot (ft), yard (yd), mile (miles), nautical mile (nmi) |
37| `weight` | array<string> | Available weight units: milligram (mg), gram (g), kilogram (kg), metric ton (t), ounce (oz), pound (lb), stone (stone) |
38| `volume` | array<string> | Available volume units: milliliter (ml), liter (l), teaspoon (tsp), tablespoon (tbsp), fluid ounce (fl_oz), cup (cup), pint (pt), quart (qt), gallon (gal) |
39| `temperature` | array<string> | Available temperature units: celsius (c), fahrenheit (f), kelvin (k) |
40| `area` | array<string> | Available area units: square millimeter (mm2), square centimeter (cm2), square meter (m2), square kilometer (km2), square inch (in2), square foot (ft2), square yard (yd2), acre (acre), hectare (ha) |
41| `speed` | array<string> | Available speed units: meters per second (m_s), kilometers per hour (km_h), miles per hour (mph), knots (knots) |