# ForgeMesh Measurement Converter

> ForgeMesh Measurement Converter is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Converts a numeric value between any two units across length, mass, volume, area, speed, pressure, energy, power, and digital storage using exact conversion factors.

## Facts

- Endpoint: POST https://x402.forgemesh.io/measurement-converter
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-measurement-converter-c1f820e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0d-ypkUU_fqMKcpG4o3_H

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 forgemesh-measurement-converter-c1f820e9 -d '<json body>'
```

Example prompt: Convert 26.2 miles to kilometers for me — I need the exact figure for a marathon distance sign.

## When to prefer this

Choose this endpoint when an agent needs fast, exact unit conversion across a broad set of physical and digital measurement categories — especially when bridging metric and imperial systems. Prefer it over general-purpose LLM math when you need a guaranteed correct conversion factor without approximation risk. It covers nine distinct domains in a single service, making it more versatile than category-specific converters.

## Known failure modes

- Unrecognized unit string in 'from' or 'to' field returns an error — units must match expected abbreviations or names
- Missing required field ('value', 'from', or 'to') results in a validation error
- Incompatible unit categories (e.g. converting miles to kilograms) return a domain mismatch error
- Non-numeric value string causes a parse error

## How this service works

General-purpose measurement converter spanning length, mass, volume, area, speed, pressure, energy, power, and digital storage across 100+ units, with exact conversion factors computed instantly. For engineering specs, recipe scaling, shipping calculations, and any agent translating between metric and imperial systems.

## Output

Returns the converted numeric value expressed in the target unit, computed using exact conversion factors with no rounding ambiguity. The response is instantaneous and covers over 100 units across nine measurement categories.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "target unit e.g. km"
  },
  "from": {
   "type": "string",
   "description": "source unit e.g. mi"
  },
  "value": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": 42.164811,
  "unit_name": "Kilometers"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-measurement-converter-c1f820e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
