YAML to JSON
Convert YAML to JSON using a hand-written indentation-based parser supporting basic key-value pairs and nesting — not the full YAML spec (no lists, anchors, or multi-line strings).
- 1Paste your YAML data (basic key:value structure)
- 2The JSON output is generated automatically
- 3Copy the result
Related Tools
CSV to YAML
Convert CSV text into a YAML list of key-value records, with keys taken from the first (header) row — paste your CSV, no file upload needed.
JSON to YAML
Convert JSON to human-readable YAML, recursively mapping objects to indented key blocks and arrays to dash-prefixed lists.
YAML to XML
Convert YAML to XML by first parsing it with a hand-written basic-YAML parser (key:value pairs and nesting only — not lists, anchors, or multi-line strings), then mapping the result to XML tags.
YAML to CSV
Convert YAML to CSV by first parsing it with a hand-written basic-YAML parser (key:value pairs and nesting only), then flattening the result into CSV rows and columns.