Tested tool guide
Tested browser tools
Checked August 16, 2026
What TOML to JSON Converter does, with a checked example
Paste a TOML config into one pane and this tool renders the equivalent JSON beside it, and the direction reverses: JSON in, TOML out. Both formats are parsed strictly before anything is converted, so a syntax error stops the run with a message instead of producing garbage, and the output is re-indented to your chosen width. The conversion happens locally in the page, so nothing is uploaded. The common surprise is TOML's date and time values: JSON has no date type, so they come out as ordinary quoted strings.
Worked example
A concrete input and expected output from the current implementation.
Input
title = "inventory"
version = 3
enabled = true
synced = 2024-03-01T12:00:00Z
regions = ["eu", "us", "ap"]
->
Expected output
{
"title": "inventory",
"version": 3,
"enabled": true,
"synced": "2024-03-01T12:00:00Z",
"regions": ["eu", "us", "ap"]
} Every value maps to its JSON counterpart, with one exception: the TOML datetime has no JSON type, so it is serialized as an ISO 8601 string, identical in form to the TOML literal.