TOML to JSON Converter

Convert TOML configuration files to JSON format

TOML Input

Loading...

JSON Output

Enter TOML data to convert to JSON

Your converted data will appear here

Frequently Asked Questions

What is TOML format?

TOML (Tom's Obvious Minimal Language) is a configuration file format that's easy to read due to obvious semantics. It's designed to map unambiguously to a hash table.

How are TOML sections converted?

TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.

What TOML features are supported?

Our converter supports strings, numbers, booleans, arrays, inline tables, nested sections, and basic date/time parsing. Complex multiline strings and advanced TOML features are partially supported.

Are array tables supported?

Yes! Array tables [[products]] are converted to JSON arrays containing objects. This is useful for representing repeated configuration blocks.