YAML to JSON
Converts YAML to formatted JSON. Runs entirely in your browser — nothing is sent to a server.
Converts YAML to formatted JSON. Runs entirely in your browser — nothing is sent to a server.
Use cases
- Converting a YAML config file to JSON for an API request
- Checking the exact JSON structure a YAML file parses to
Examples
A small object with an array
name: Amigo tools: - 1 - 2 - 3
{
"name": "Amigo",
"tools": [
1,
2,
3
]
}FAQ
Is my data sent to a server?
No — this tool runs entirely in your browser.