# Delx Degrees to Radians Converter

> Delx Degrees to Radians Converter 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-16).

Converts a degree value to its equivalent in radians via a paid microtransaction API

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/deg-to-rad
- 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/delx-degrees-to-radians-converter-11d212af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZBRXgCMd__-BiSCvTl_Pa

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-degrees-to-radians-converter-11d212af -d '<json body>'
```

Example prompt: Convert 270 degrees to radians for me.

## When to prefer this

Choose this endpoint when your agent pipeline needs a reliable, stateless, pay-per-use degrees-to-radians conversion without spinning up a local math library or managing environment dependencies. Ideal for lightweight agentic workflows that already use x402 micropayments on Base and want a consistent, hosted conversion step.

## Known failure modes

- Non-integer or missing 'degrees' field returns a validation error
- Network or payment failure (x402) if USDC balance is insufficient
- Unexpected server error returning a 5xx response

## How this service works

Convert degrees to radians. Call when you feed geometry/trig helpers from degree inputs. Returns radians and degrees 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 the input degrees value and the computed equivalent in radians (e.g. 180 degrees → 3.14159... radians).

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "schema": "delx/util-deg-to-rad/v1",
  "degrees": 180,
  "radians": 3.141592653589793
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-degrees-to-radians-converter-11d212af/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)
