# Delx Temp C To F

> Delx Temp C To F 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 Celsius temperature value to Fahrenheit, returning both unit representations as a local JSON computation with no external network calls.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/temp-c-to-f
- 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-c-to-f-5edc151c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z4eAol1t__WUR3db_rjIU

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-c-to-f-5edc151c -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need a deterministic, local, zero-latency Celsius-to-Fahrenheit conversion inside an agent pipeline without any external API dependencies, network calls, or data retention concerns. Ideal for normalizing weather, IoT sensor, or health data units in automation workflows where cost predictability ($0.001 USDC flat) and privacy (no data stored) matter.

## Known failure modes

- Missing or non-integer celsius input returns a validation error
- Payment failure (insufficient USDC balance or x402 rejection) blocks the call
- Extremely large or small integer values may produce out-of-range results depending on implementation limits

## How this service works

Convert Celsius to Fahrenheit. Call when you normalize weather/agent sensor units. Returns fahrenheit and celsius 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

Returns a JSON object containing both the original celsius value and the computed fahrenheit equivalent, with no external data fetched — purely local arithmetic.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-temp-c-to-f-5edc151c/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)
