TOML to JSON Converter

Convert TOML config files to JSON.

Frequently Asked Questions

What TOML features are supported? +
The converter handles key-value pairs, [section] headers, [a.b] nested sections, [[array]] tables, basic and literal strings, integers, floats, booleans, and date/datetime values.
How are TOML dates represented in JSON? +
Since JSON has no native date type, TOML dates and datetimes are converted to ISO 8601 strings. For example, 2024-01-15 becomes the string "2024-01-15" in the JSON output.
Can I convert JSON back to TOML? +
This tool only converts TOML to JSON. JSON-to-TOML conversion requires different logic since TOML supports table syntax that has no direct JSON equivalent.