# Numora Time Unit Conversion

> Numora Time Unit Conversion 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-15).

Converts a numeric time value from one unit to another (e.g. hours to seconds, days to minutes) with no external dependencies.

## Facts

- Endpoint: POST https://numormo.vercel.app/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-f8c50894
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EypexwCoueVEYK_bzcwI6

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

Example prompt: Convert 3.5 hours to seconds using Numora's pure math API — from 'hours' to 'seconds' with value 3.5.

## When to prefer this

Choose this endpoint when you need a lightweight, dependency-free, deterministic time unit conversion with no rate limits beyond micropayment cost. Ideal for agents doing batch math pipelines, physics or scheduling calculations, or any scenario where calling a heavyweight API or running local code is impractical. Best when precision and reliability matter more than free availability.

## Known failure modes

- Missing required field ('from', 'to', or 'value') returns a validation error
- Unknown or unsupported time unit strings return an error
- Non-numeric value field causes schema validation failure
- Network timeout on Vercel cold start may cause latency spike
- Payment failure via x402 prevents the computation from executing

## 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), 'result' (an object containing the converted numeric value), and 'computation' (a human-readable string describing what was computed, e.g. '3.5 hours = 12600 seconds').

## 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-f8c50894/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)
