# ForgeMesh Temperature Converter

> ForgeMesh Temperature Converter is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-16).

Converts a temperature value from any of Celsius, Fahrenheit, Kelvin, or Rankine into all four scales simultaneously with scientific precision.

## Facts

- Endpoint: POST https://x402.forgemesh.io/temperature-converter
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-temperature-converter-a64beea0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CQbG4BuGKzv7-yScKFNbR

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 forgemesh-temperature-converter-a64beea0 -d '<json body>'
```

Example prompt: Can you convert 98.6 degrees Fahrenheit to Celsius, Kelvin, and Rankine all at once?

## When to prefer this

Choose this endpoint when you need to convert a single temperature value from any of the four major scales (Celsius, Fahrenheit, Kelvin, Rankine) and want all four output values in one call, with scientific-grade precision. Prefer this over generic unit-conversion APIs when dealing specifically with temperature and when Rankine support or exact thermodynamic accuracy is required. Ideal for science, engineering, lab, or cooking applications where multi-scale output is needed simultaneously.

## Known failure modes

- Missing 'from' or 'value' field returns a 400-level error
- Invalid scale code (anything other than C, F, K, R) causes a validation error
- Non-numeric 'value' string results in a parse error
- Temperatures below absolute zero (physically impossible) may return an error or undefined behavior
- Network timeout or service unavailability returns a 5xx error

## How this service works

Temperature conversion API: any of Celsius, Fahrenheit, Kelvin, or Rankine to all four at once. Science-grade, exact.

## Output

Returns the input temperature expressed in all four scales (Celsius, Fahrenheit, Kelvin, Rankine) simultaneously, computed with exact scientific-grade formulas. The response provides all converted values in a single API call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "from": {
   "type": "string",
   "description": "C | F | K | R"
  },
  "value": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "kelvin": 373.15,
  "celsius": 100,
  "rankine": 671.67,
  "fahrenheit": 212
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-temperature-converter-a64beea0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
