JSON to TOML
Convert a flat or one-level-nested JSON object into TOML — nested objects become [table] blocks, top-level scalar values become key = value lines, strings are quoted.
- 1Paste your JSON object (objects become [table] blocks)
- 2The TOML output is generated automatically
- 3Copy the result
Related Tools
JSON to YAML
Convert JSON to human-readable YAML, recursively mapping objects to indented key blocks and arrays to dash-prefixed lists.
INI to JSON
Convert INI configuration text into JSON, with [section] headers becoming nested objects and key=value lines becoming their properties.
JSON to INI
Convert a flat or one-level-nested JSON object into INI format — nested objects become [section] blocks, top-level scalar values become key=value lines outside any section.
TOML to JSON
This page does not parse TOML — the format's full grammar (dotted keys, inline tables, arrays of tables, typed dates) needs a real TOML parsing library, which this client-side tool declines to approximate. Gives exact commands for real tools instead.