# EDN to JSON Converter (Light)

> EDN to JSON Converter (Light) is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Converts EDN (Extensible Data Notation) formatted text into JSON format

## Facts

- Endpoint: POST https://kihustle.tech/agents/api/v1/edn-to-json-light
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/edn-to-json-converter-light-89277f3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uoWi_iJ4kELA0BjrVJvWb

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 edn-to-json-converter-light-89277f3e -d '<json body>'
```

Example prompt: Convert this EDN text to JSON for me: {:name "Alice" :age 30 :active true}

## When to prefer this

Choose this endpoint when you need a lightweight, low-cost EDN-to-JSON conversion without setting up a local Clojure/EDN parser. Ideal for agents or pipelines that occasionally receive EDN-formatted data and need it normalized to JSON for downstream processing. At $0.002 per call it is economical for moderate-volume one-off conversions.

## Known failure modes

- Invalid or malformed EDN input returns an error response
- Empty edn_text field may cause parsing failure
- Complex EDN types without JSON equivalents (e.g. tagged literals, symbols) may not convert cleanly
- Network timeout on large EDN payloads

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object containing the converted result of the provided EDN text, along with a status field indicating success or failure of the conversion.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "edn_text": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/edn-to-json-converter-light-89277f3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
