Convert any physical measurement — length, mass, volume, temperature, area, spee
Convert any physical measurement — length, mass, volume, temperature, area, speed, pressure, energy, time, data storage & transfer rate, power, frequency, force, fuel economy (mpg/L per 100 km), angle. Auto-detects the category, handles US/imperial ambiguity, reports assumptions. Accepts natural-language queries ("what is 5 km in miles") and volume↔mass via density/substance. Deterministic and instant.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://netintel.dev/convert
| Category | Everything else |
|---|---|
| Provider host | netintel.dev |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"from": "cups",
"to": "fl_oz",
"value": 2
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"base": {
"description": "\"decimal\" (1000) or \"binary\" (1024) for digital storage units. Default: decimal",
"type": "string"
},
"density": {
"description": "For volume\u2194mass: density in kg per liter (= g/mL), e.g. 0.92",
"type": "number"
},
"from": {
"description": "Source unit, e.g. \"cups\", \"kg\", \"C\", \"miles\" \u2014 common aliases accepted (kilograms, \u00b0C, fl oz, \u2026)",
"type": "string"
},
"query": {
"description": "Alternative to value/from/to: one natural-language string, e.g. \"convert 73 liters to gallons\"",
"type": "string"
},
"substance": {
"description": "For volume\u2194mass: substance whose nominal density to use (water, milk, gasoline, diesel, ethanol, olive_oil, honey, butter, flour, sugar, seawater)",
"type": "string"
},
"system": {
"description": "\"us\" or \"imperial\" \u2014 disambiguates volume units (cup, fl_oz, pint, quart, gallon), bare \"ton\" (us_ton vs imperial_ton), and bare \"mpg\". Default: us",
"type": "string"
},
"to": {
"description": "Destination unit, e.g. \"fl_oz\", \"lb\", \"F\", \"km\" \u2014 must be in the same category as from",
"type": "string"
},
"value": {
"description": "Quantity to convert",
"type": "number"
}
},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"assumptions": {
"description": "Every default applied to resolve ambiguity: system (volume), oz_interpreted_as, base_used (digital)",
"type": "object"
},
"category": {
"type": "string"
},
"findings": {
"type": "array"
},
"from": {
"type": "string"
},
"grade": {
"type": "string"
},
"precision_note": {
"type": "string"
},
"result": {
"type": "number"
},
"score": {
"type": "number"
},
"to": {
"type": "string"
},
"value": {
"type": "number"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}