# Numora Temperature Conversion API

> Numora Temperature Conversion API is a paid API for AI agents from numomo.vercel.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Converts a numeric temperature value from one unit to another (e.g. Celsius to Fahrenheit, Kelvin to Celsius)

## Facts

- Endpoint: POST https://numomo.vercel.app/api/convert/temperature
- 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-temperature-conversion-api-ee67001a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bVtkjjfIGS4Oc1wAWGjD_

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

Example prompt: Convert 212 degrees Fahrenheit to Celsius using Numora's math API — just need the converted value.

## When to prefer this

Choose this endpoint when you need a fast, self-contained, zero-dependency temperature unit conversion with no external API keys or data sources required. Ideal for agents that need deterministic math results with predictable micropayment costs ($0.02 USDC per call). Prefer this over general-purpose LLM arithmetic when auditability and consistent precision matter.

## Known failure modes

- Missing required fields (to, from, or value) returns a validation error
- Unsupported unit strings (e.g. typos like 'celcius') may return an error or unexpected result
- Non-numeric value input causes schema validation failure
- Network or server errors from the Vercel deployment (cold starts may add latency)

## 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

A JSON object with a boolean 'success' field, a 'result' object containing the converted temperature value, and a 'computation' string with a human-readable description of what was computed (e.g. '212°F = 100°C').

## 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-api-ee67001a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numomo.vercel.app](https://www.zero.xyz/host/numomo.vercel.app/llms.txt)
