# Numora Time Unit Conversion

> Numora Time 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 a numeric value from one time unit to another (e.g., hours to seconds, days to minutes)

## Facts

- Endpoint: POST https://numorapoi.orbonomy.xyz/api/convert/time
- 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-time-unit-conversion-148c440a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ttv0WJQmKSVo0GNx8RKGg

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-time-unit-conversion-148c440a -d '<json body>'
```

Example prompt: Convert 90 minutes to seconds using a pure math computation API — no external dependencies needed.

## When to prefer this

Use this endpoint when an AI agent needs a fast, dependency-free time unit conversion computation without relying on external data sources. Prefer over general-purpose math libraries when you need a hosted micropayment-enabled API call for agent automation pipelines, especially on Base (x402 protocol). Best for straightforward numeric conversions between standard time units.

## Known failure modes

- Unrecognized time unit string in 'from' or 'to' fields — likely returns an error or success:false
- Missing required fields (value, from, to) — likely returns a 400-style error
- Payment not provided or insufficient — returns HTTP 402 requiring x402 micropayment on Base
- Non-numeric value supplied — schema validation failure
- Same unit for 'from' and 'to' — returns input value unchanged

## 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 boolean success flag, a result object containing the converted numeric value, and a human-readable computation string describing 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-time-unit-conversion-148c440a/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)
