Convert TOML configuration files to JSON format
Enter TOML data to convert to JSON
Your converted data will appear here
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.
TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.
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.
Yes! Array tables [[products]] are converted to JSON arrays containing objects. This is useful for representing repeated configuration blocks.