# Numora Area Unit Conversion

> Numora Area Unit Conversion is a paid API for AI agents from numorapoi.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Converts an area value from one unit to another (e.g. square meters to acres) with no external dependencies

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/convert/area
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-area-unit-conversion-7622def1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mQUXPlixpn-VHI1b2QBPu

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-area-unit-conversion-7622def1 -d '<json body>'
```

Example prompt: Convert 2.5 acres to square meters for me.

## When to prefer this

Choose this endpoint when you need a simple, self-contained area unit conversion with no external API key or account setup, especially in agentic workflows using x402 micropayments on Base. Suitable for converting between standard area units (sq ft, sq m, acres, hectares, sq km, sq miles, etc.) without relying on a general-purpose math library or LLM calculation.

## Known failure modes

- Unsupported unit string provided for 'from' or 'to' field — returns error or unexpected result
- Missing required fields (value, from, to) — likely 400 or validation error
- Payment not completed via x402 — 402 Payment Required response
- Invalid numeric value for 'value' field — may return error
- Network timeout on the hosted subdomain

## 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, a result object containing the converted numeric area value in the target unit, and a human-readable computation string describing what was calculated.

## 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-area-unit-conversion-7622def1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numorapoi.orbonomy.xyz](https://www.zero.xyz/host/numorapoi.orbonomy.xyz/llms.txt)
