# Numora Data Unit Conversion API

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

Converts a numeric value from one data storage/transfer unit to another (e.g. bytes to gigabytes, megabits to terabytes)

## Facts

- Endpoint: POST https://numormo.vercel.app/api/convert/data
- 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-data-unit-conversion-api-542a8d51
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_crmlOL8BxO8OT01n4tbiv

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-data-unit-conversion-api-542a8d51 -d '<json body>'
```

Example prompt: Convert 1,500,000 bytes to gigabytes for me using Numora's data unit converter — I need the precise computed result.

## When to prefer this

Choose this endpoint when you need a reliable, dependency-free arithmetic conversion between data storage or transfer units (bytes, kilobytes, megabytes, gigabytes, terabytes, petabytes, megabits, gigabits, etc.) with a verifiable numeric result and a human-readable explanation. Prefer it over general-purpose LLM math when precision and repeatability matter, or when you need the computation logged as a structured result rather than inferred text.

## Known failure modes

- Invalid or unrecognized unit string in 'from' or 'to' fields — returns error or success:false
- Missing required fields ('value', 'from', 'to') — returns 400-level error
- Incompatible unit types (e.g. converting bytes to seconds) — may return error or unexpected result
- Non-numeric 'value' field — schema validation failure

## 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' (boolean), 'result' (object containing the converted numeric value), and 'computation' (a human-readable string describing what was computed, e.g. '1500000 bytes = 1.43051 GB').

## 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-data-unit-conversion-api-542a8d51/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormo.vercel.app](https://www.zero.xyz/host/numormo.vercel.app/llms.txt)
