# Numora Data Unit Conversion

> Numora Data 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 value between data storage/transfer units (e.g. bytes to megabytes, kilobits to gigabits) using pure math computation

## Facts

- Endpoint: POST https://numormor.netlify.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-68c85b64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Uzcr-QuXnAkG9eWBd0Eo-

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-68c85b64 -d '<json body>'
```

Example prompt: Convert 1500 megabytes to gigabytes for me — just give me the numeric result.

## When to prefer this

Use this endpoint when you need a lightweight, serverless, no-dependency computation to convert between data size or data transfer units (bytes, kilobytes, megabytes, gigabytes, terabytes, kilobits, megabits, etc.). Prefer this over general-purpose calculators when you want a structured JSON response with a human-readable computation description, and when micropayment-per-call pricing via x402 on Base is acceptable.

## Known failure modes

- Unrecognized unit strings in 'from' or 'to' fields return an error or unexpected result
- Missing required fields (value, from, to) cause a 400-level validation error
- Negative or non-numeric values may produce errors or undefined behavior
- x402 payment failure prevents endpoint from returning any result
- Incompatible unit types (e.g. converting data units to time units) likely return an error

## 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 a 'result' object containing the converted numeric value, a 'computation' string describing what was calculated (e.g. '1500 MB = 1.465 GB'), and a 'success' boolean confirming the operation completed.

## 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-68c85b64/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)
