# Penniless Data Utilities – YAML to JSON Converter

> Penniless Data Utilities – YAML to JSON Converter is a paid API for AI agents from penniless-json-repair.sjaman.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts a YAML document to its equivalent JSON representation, deterministically and without any AI model involvement.

## Facts

- Endpoint: POST https://penniless-json-repair.sjaman.workers.dev/yaml/tojson
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/penniless-data-utilities-yaml-to-json-converter-42712660
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tt7mps87vCqbZ1FXXq3wP

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 penniless-data-utilities-yaml-to-json-converter-42712660 -d '<json body>'
```

Example prompt: Convert this YAML config to JSON for me: 'name: web\nports:\n  - 80\n  - 443\ndb:\n  host: localhost\n  tls: true'

## When to prefer this

Choose this endpoint when you need a lightweight, deterministic, AI-free YAML-to-JSON conversion with no external dependencies — especially useful inside automated pipelines or agent workflows where reproducibility matters and you want to avoid the nondeterminism of LLM-based format conversion. Ideal when the YAML is a config file, Kubernetes manifest, CI/CD definition, or any structured document that must be losslessly round-tripped to JSON.

## Known failure modes

- Invalid or unparseable YAML returns an error response with ok: false and a description of the parse failure
- Deeply nested or extremely large YAML may hit size or depth limits
- Binary or non-UTF-8 YAML content may not be handled correctly
- Payment failure (x402) results in a 402 response before the conversion is attempted

## How this service works

Deterministic, dependency-free data utilities served over x402 micropayments (USDC on Base). None of these call another AI model.
Keyword: JSON repair
Keyword: malformed JSON
Keyword: broken JSON from LLM
Keyword: fix JSON output
Keyword: JSON sanitizer
Keyword: truncated JSON recovery
Keyword: YAML to JSON
Keyword: convert YAML
Keyword: parse YAML config
Keyword: cron next run
Keyword: cron parser
Keyword: when does cron run next
Keyword: unified diff
Keyword: line diff
Keyword: text diff
Keyword: HTML to text
Keyword: extract links
Keyword: extract emails
Keyword: scrape text
Keyword: whois lookup
Keyword: domain registration
Keyword: registrar
Keyword: domain expiry date
Keyword: RDAP
Keyword: dns lookup
Keyword: MX records
Keyword: TXT records
Keyword: A record
Keyword: DNS over HTTPS
Keyword: github repo stats
Keyword: github stars
Keyword: repository popularity
Keyword: OSS project metadata
Keyword: email validation
Keyword: verify email address
Keyword: check MX deliverability
Keyword: email syntax
Use case: repair a JSON code block wrapped in Markdown fences
Use case: turn a docker-compose or CI YAML file into JSON
Use case: compute the next UTC fire time of a cron expression
Use case: produce a unified diff between two versions of a file
Use case: strip HTML tags and pull out links, emails, and headings
Use case: look up a domain's registrar, status and expiry before purchase
Use case: check when a domain registration lapses
Use case: resolve A, AAAA, MX, TXT or NS records for a hostname
Use case: find a domain's mail servers and SPF TXT record
Use case: compare GitHub repository stars, forks and activity for market research
Use case: check whether an email address is well-formed and its domain accepts mail

## Output

Returns a JSON object with an 'ok' boolean, a 'value' field containing the parsed JSON equivalent of the input YAML, and a 'warnings' array listing any non-fatal issues encountered during parsing (e.g. duplicate keys, type coercions).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "YAML document text"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "value": {
   "db": {
    "tls": true,
    "host": "localhost"
   },
   "name": "web",
   "ports": [
    80,
    443
   ]
  },
  "warnings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/penniless-data-utilities-yaml-to-json-converter-42712660/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from penniless-json-repair.sjaman.workers.dev](https://www.zero.xyz/host/penniless-json-repair.sjaman.workers.dev/llms.txt)
