YAML ↔ JSON Converter

Convert YAML to JSON or JSON to YAML. Direction is auto-detected from the input, or you can switch manually.

When to use each format

YAML is great for

JSON is great for

Common YAML gotchas

Frequently asked questions

Does this preserve YAML comments?

No. The conversion goes through a JavaScript object representation, which doesn't include comments. Round-tripping YAML through JSON and back will strip any # comments.

Why does my JSON output use double quotes when my YAML used single quotes?

JSON only allows double-quoted strings. The values are identical — just the quote style differs.