# Numora Energy Unit Conversion

> Numora Energy 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 from one energy unit to another (e.g. joules to kilowatt-hours, calories to BTUs)

## Facts

- Endpoint: POST https://numormor.netlify.app/api/convert/energy
- 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-energy-unit-conversion-1768efb9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0O1cCy1wFjZrfnmP-m5ao

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-energy-unit-conversion-1768efb9 -d '<json body>'
```

Example prompt: Convert 750 kilowatt-hours to megajoules for me.

## When to prefer this

Choose this endpoint when you need a fast, dependency-free energy unit conversion with no external API calls — ideal for agentic workflows that require deterministic math results and support x402 micropayments on Base for per-call billing.

## Known failure modes

- Unsupported or misspelled unit string for 'from' or 'to' returns an error
- Missing required fields (value, from, to) returns a 400-level error
- Non-numeric value provided returns a validation error
- Payment not included or insufficient triggers a 402 Payment Required response

## 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 result object with the converted numeric value, a boolean success flag, and a human-readable string describing the computation performed (e.g. '750 kWh converted to MJ = 2700 MJ').

## 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-energy-unit-conversion-1768efb9/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)
