T
inyHub
.tools
Home
Calculators
Applications
Dev Tools
Games
About
Help
🌐
English
Home
Developer Tools
Json Yaml Converter
🔄
JSON ↔ YAML Converter
Convert between JSON and YAML with live preview, validation, error reporting, and download.
JSON → YAML
YAML → JSON
Load Example
JSON Input
{ "name": "John Doe", "age": 30, "active": true, "address": { "street": "123 Main St", "city": "Springfield", "zip": "62701" }, "hobbies": [ "reading", "cycling", "cooking" ], "scores": [ 95, 87, 92 ], "metadata": null }
YAML Output
Copy
Download
name: John Doe age: 30 active: true address: street: "123 Main St" city: Springfield zip: "62701" hobbies: - reading - cycling - cooking scores: - 95 - 87 - 92 metadata: null