Convert YAML to JSON format
YAML to JSON parses simple, flat 'key: value' lines into a JSON object, entirely in your browser — nothing is uploaded to a server. It doesn't support nested structures, lists (- item), multi-line strings, comments, or booleans/null — only flat top-level key-value pairs. A key with no value after the colon converts to 0 rather than null, since it isn't recognized as a distinct case.
Is YAML to JSON free to use?
Yes, completely free with no registration required.
Does it support nested YAML structures?
No — only flat, top-level 'key: value' pairs are recognized; indented nested keys aren't parsed into nested JSON objects.
Does it support YAML lists (- item)?
No — list syntax isn't recognized and won't convert into a JSON array.
Is my data uploaded to a server?
No, conversion happens entirely in your browser.