# NetIntel Unit Converter

> NetIntel Unit Converter is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts a quantity between units of measure across categories like volume, mass, temperature, distance, and digital storage, with support for natural-language query input and volume↔mass conversions via density.

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/convert
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-unit-converter-b7119b69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YhV2rdm-A6b2FfP2ivi-Q

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability netintel-unit-converter-b7119b69
```

Example prompt: Convert 2 cups to fluid ounces for me, and let me know what assumptions were made about the measurement system.

## When to prefer this

Choose this endpoint when you need reliable, structured unit conversion with transparency about assumptions (measurement system, substance density, binary vs decimal base). It is especially useful when converting between volume and mass units (requiring density), handling ambiguous units like 'ton' or 'cup' across US/imperial systems, or accepting natural-language conversion queries. Prefer it over generic LLM-based conversion when you need a verifiable numeric result with a grade, precision note, and explicit assumptions logged — and when pay-per-call with no signup is preferred.

## Known failure modes

- Missing required 'value', 'from', or 'to' when not using the 'query' param — returns validation error, no charge
- Incompatible unit categories (e.g. converting kg to Fahrenheit) — returns error indicating unit mismatch
- Unknown or unrecognized unit alias — returns error, no charge
- Volume↔mass conversion without providing density or a recognized substance — returns error asking for density
- Ambiguous unit (e.g. bare 'ton' or 'fl oz') without specifying 'system' param — may apply default with assumption logged
- Upstream or server errors — no charge applied per NetIntel policy

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

Returns a JSON object with the converted result, source and destination units, the measurement category, a grade (A–F) and numeric score reflecting conversion confidence, any assumptions applied (e.g. measurement system, substance density, binary/decimal base), and a precision note indicating rounding.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "to": {
       "type": "string",
       "description": "Destination unit, e.g. \"fl_oz\", \"lb\", \"F\", \"km\" — must be in the same category as from"
      },
      "base": {
       "type": "string",
       "description": "\"decimal\" (1000) or \"binary\" (1024) for digital storage units. Default: decimal"
      },
      "from": {
       "type": "string",
       "description": "Source unit, e.g. \"cups\", \"kg\", \"C\", \"miles\" — common aliases accepted (kilograms, °C, fl oz, …)"
      },
      "query": {
       "type": "string",
       "description": "Alternative to value/from/to: one natural-language string, e.g. \"convert 73 liters to gallons\""
      },
      "value": {
       "type": "number",
       "description": "Quantity to convert"
      },
      "system": {
       "type": "string",
       "description": "\"us\" or \"imperial\" — disambiguates volume units (cup, fl_oz, pint, quart, gallon), bare \"ton\" (us_ton vs imperial_ton), and bare \"mpg\". Default: us"
      },
      "density": {
       "type": "number",
       "description": "For volume↔mass: density in kg per liter (= g/mL), e.g. 0.92"
      },
      "substance": {
       "type": "string",
       "description": "For volume↔mass: substance whose nominal density to use (water, milk, gasoline, diesel, ethanol, olive_oil, honey, butter, flour, sugar, seawater)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "to": {
       "type": "string"
      },
      "from": {
       "type": "string"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      },
      "value": {
       "type": "number"
      },
      "result": {
       "type": "number"
      },
      "category": {
       "type": "string"
      },
      "findings": {
       "type": "array"
      },
      "assumptions": {
 
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "to": "fl_oz",
  "from": "cups",
  "grade": "A",
  "score": 100,
  "value": 2,
  "result": 16,
  "category": "volume",
  "findings": [],
  "assumptions": {
   "system": "us"
  },
  "precision_note": "rounded to 6 significant figures"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-unit-converter-b7119b69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
