Convert TOML to JSON format
TOML to JSON parses simple TOML — [section] headers and key = value pairs, one level deep — into a JSON object, entirely in your browser — nothing is uploaded to a server. It doesn't support nested tables (like [section.subsection]), arrays, multi-line strings, or TOML's native date/time literals, so more advanced TOML files won't convert correctly.
Is TOML to JSON free to use?
Yes, it's completely free with no signup required.
Does it support nested tables, like [section.subsection]?
No — only one level of [section] headers is recognized; dotted or nested table headers aren't parsed into nested JSON objects.
Does it support TOML arrays or date/time values?
No — arrays (key = [1, 2, 3]) and TOML's native date/time literals aren't parsed specially; they'll come through as unparsed text rather than proper JSON arrays or dates.
Can I download the JSON as a file?
No, there's only a 'Copy' button — paste the copied text into a file yourself if you need one.