# Numora Temperature Conversion

> Numora Temperature 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 temperature value from one unit (e.g. Celsius, Fahrenheit, Kelvin) to another using pure math computation

## Facts

- Endpoint: POST https://numormor.netlify.app/api/convert/temperature
- 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-temperature-conversion-d16f2905
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lIkWa67qsmeuW49ILPWBB

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-temperature-conversion-d16f2905 -d '<json body>'
```

Example prompt: Convert 98.6 degrees Fahrenheit to Celsius using Numora's math API.

## When to prefer this

Use this endpoint when you need a reliable, dependency-free temperature conversion computed server-side, especially within an agentic workflow that already uses x402 micropayments on Base and needs deterministic math results without calling an external weather or science API.

## Known failure modes

- Missing required field (to, from, or value) returns a 400 error
- Unrecognized unit string (e.g. typo in 'Celcius') returns an error
- Payment not provided or insufficient USDC causes a 402 Payment Required response
- Numeric overflow or invalid value type causes a computation error

## 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 temperature value, 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-temperature-conversion-d16f2905/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)
