# Delx Temp F To C

> Delx Temp F To C is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts a Fahrenheit temperature value to its Celsius equivalent, returning both values as JSON.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/temp-f-to-c
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-temp-f-to-c-b4f26aa5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hKyashzii-VDnbh9xZW45

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 delx-temp-f-to-c-b4f26aa5 -d '<json body>'
```

Example prompt: Convert 98 degrees Fahrenheit to Celsius for me.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call Fahrenheit-to-Celsius conversion with no API keys, no data retention, and deterministic local computation — ideal for agent pipelines normalizing imperial sensor or weather data on Base via x402 micropayments.

## Known failure modes

- Missing or non-integer 'fahrenheit' field returns a validation error
- Payment not provided or insufficient USDC balance causes a 402 Payment Required response
- Extremely out-of-range integer values may return an error or unexpected result

## How this service works

Convert Fahrenheit to Celsius. Call when you normalize imperial sensor readings for agent logic. Returns celsius and fahrenheit for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

A JSON object containing both the input Fahrenheit value and the computed Celsius equivalent, with no external calls or data retention.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "fahrenheit": {
   "type": "integer",
   "description": "Input field: fahrenheit."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "schema": "delx/util-temp-f-to-c/v1",
  "celsius": 20,
  "fahrenheit": 68
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-temp-f-to-c-b4f26aa5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
