TOML → JSON
Parse TOML configuration into JSON.
Private by design. Your input never leaves this browser. Conversions run locally on your device.
What this tool handles
- TOML dates and date-times become ISO 8601 strings.
- Tables, inline tables and arrays of tables all become plain JSON objects and arrays.
- Invalid TOML reports the line and column rather than a raw parser message.
Example
TOML
title = "DevConvert"
[owner]
name = "Ada"
active = true
JSON
{
"title": "DevConvert",
"owner": {
"name": "Ada",
"active": true
}
}
Related tools
- JSON → TOML — Convert a JSON object to TOML.
- Convert any format — Pick an input format and an output format and convert between any pair.
- JSON → YAML — Convert JSON to readable YAML with configurable indentation.
- YAML → JSON — Parse YAML and emit pretty-printed JSON.
- JSON → CSV — Turn an array of objects into a CSV table.
- CSV → JSON — Parse CSV or TSV into JSON, with delimiter detection and optional type coercion.