# Numora Time Unit Conversion

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

## Facts

- Endpoint: POST https://numormor.netlify.app/api/convert/time
- 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-time-unit-conversion-6004139b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WxYvsS3oQ52MLGCYKmU2N

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

Example prompt: Convert 90 minutes to seconds for me — give me the exact numeric result.

## When to prefer this

Use this endpoint when you need a precise, serverless, zero-dependency time unit conversion computed mathematically — ideal for AI agents that need reliable arithmetic without calling a general-purpose LLM or a heavy library. Prefer this over manual calculation when accuracy and auditability matter, and when you're already using the Numora math API suite.

## Known failure modes

- Invalid or unrecognized time unit string in 'from' or 'to' fields returns an error
- Missing required fields (value, from, to) returns a 400-level error
- Non-numeric value field causes a validation failure
- Unsupported unit combination may return an error or unexpected result

## 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 value, and a human-readable computation string describing what was converted (e.g. '90 minutes = 5400 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-6004139b/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)
