# Delx Rad To Deg

> Delx Rad To Deg 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 radian value to its equivalent in degrees, returning both the input in radians and the converted result in degrees.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/rad-to-deg
- 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-rad-to-deg-26c12bb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bi-SF4CGkpI4ep6lW5rer

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-rad-to-deg-26c12bb0 -d '<json body>'
```

Example prompt: Can you convert 1.5708 radians to degrees for me?

## When to prefer this

Use this endpoint when an agent needs a quick, stateless, no-key radian-to-degree conversion — especially in pipelines displaying geometry, trigonometry, or sensor data to end users who expect degree notation. Ideal when you want a deterministic micro-service rather than implementing the math locally, and you're already operating in an x402 payment flow on Base.

## Known failure modes

- Missing or non-numeric 'radians' field returns a validation error
- Payment of $0.001 USDC via x402 on Base must succeed or request is rejected
- Extreme floating-point values (e.g. Infinity, NaN) may return an error or unexpected result

## How this service works

Convert radians to degrees. Call when you display geometry results in degrees. Returns degrees and radians 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 the original radians input and the computed degrees value (radians × 180/π), with no data retained server-side.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "radians": {
   "type": "number",
   "description": "Input field: radians."
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-rad-to-deg-26c12bb0/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)
