# Numora Weight Unit Conversion

> Numora Weight Unit Conversion is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Converts a numeric weight value from one unit to another (e.g. kilograms to pounds) with no external dependencies.

## Facts

- Endpoint: POST https://numormor.netlify.app/api/convert/weight
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-weight-unit-conversion-149d8757
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3i6IEI1deCrFrZU4TmVzx

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 numora-weight-unit-conversion-149d8757 -d '<json body>'
```

Example prompt: Convert 175 pounds to kilograms for me.

## When to prefer this

Use this endpoint when you need a quick, dependency-free weight unit conversion within a math-focused agent pipeline that already uses x402 micropayments on Base. Prefer this over general-purpose unit conversion APIs when you want predictable pure-math behavior with no external data calls.

## Known failure modes

- Unsupported unit string provided for 'from' or 'to' — likely returns error or success:false
- Missing required fields ('value', 'from', 'to') returns validation error
- Non-numeric 'value' field causes schema rejection
- Payment failure via x402 micropayment results in 402 response before computation

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with 'success' (true), 'result' containing the converted numeric weight value in the target unit, and 'computation' with a human-readable description of the conversion performed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "from",
  "value"
 ],
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "value": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-weight-unit-conversion-149d8757/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
