ToolsCandy

JSON to TOML Converter — Free & Private

Convert JSON configuration to TOML using smol-toml. Handles nested tables and arrays with optional null omission — all in your browser.

Your data never leaves your browser

JSON input
TOML output

About this tool

JSON→TOMLNested tablesOmit nullsDownload .tomlPrivate

How to use

  1. Paste valid JSON.
  2. Toggle omit null values if your target does not support null.
  3. Copy or download the TOML output.

Examples

Config object

{"title":"App","debug":true,"server":{"host":"localhost","port":8080}}
title = "App"
debug = true

[server]
host = "localhost"
port = 8080

FAQ