Why convert TOML to JSON?
TOML is everywhere in modern tooling — Cargo.toml, pyproject.toml, netlify.toml — but many tools and APIs only accept JSON. Paste a TOML file above and get the equivalent JSON tree, ready to inspect or feed into your pipeline.
How it works
The converter parses your TOML locally according to the TOML 1.0 specification: tables and arrays of tables become nested objects and arrays, typed values keep their type, and dates are output as ISO 8601 strings. Invalid TOML is rejected with an error.