Back to tools
/
JSON ↔ YAML
Ctrl
K
EN
JSON ↔ YAML
Bidirectional conversion between JSON and YAML
Sample
Copy
Clear
JSON → YAML
YAML → JSON
JSON Input
{ "server": { "host": "0.0.0.0", "port": 8080, "ssl": true }, "services": [ "api", "worker", "redis" ], "meta": { "env": "production" } }
YAML Output
server: host: 0.0.0.0 port: 8080 ssl: true services: - api - worker - redis meta: env: production