Logo

Free Online YAML To JSON Converter

Convert YAML into JSON quickly with this free online YAML to JSON Converter. Type or paste your YAML into the editor, or select a YAML file from your computer to get started. You can also select the indentation size and decide whether braces should appear on the same line or across multiple lines.

When the process is complete, the converted JSON is ready to copy or save to your device. If the YAML structure is not properly organized, make it easier to read using our YAML Formatter before performing the conversion.

YAML To JSON Converter
Converted JSON

YAML To JSON Conversion Example

Input YAML

company:
  name: Bright Solutions
  founded: 2022
  active: true
  employees:
    - id: 201
      name: Alice Green
      role: Developer
    - id: 202
      name: Brian White
      role: Designer

Converted JSON

{
  "company": {
    "name": "Bright Solutions",
    "founded": 2022,
    "active": true,
    "employees": [
      {
        "id": 201,
        "name": "Alice Green",
        "role": "Developer"
      },
      {
        "id": 202,
        "name": "Brian White",
        "role": "Designer"
      }
    ]
  }
}

Related Tools