Loading...
Loading...
Convert TOML configuration files into formatted JSON for APIs, debugging, and migration work.
Top-Level Items
0
Output Lines
0
Input Size
0 B
Output Size
0 B
Drop a file here
or paste directly in the input editor.
TOML Input
JSON Output
This converter parses TOML locally, preserves nested tables and arrays, and writes formatted JSON.
This tool is built for developers, analysts, and data teams who need a fast, private way to convert structured data without installing a desktop app or sending files to a server.
Convert payloads into the format your endpoint, test fixture, or documentation needs.
Move structured records between config files, spreadsheets, and JSON-based systems.
Prepare clean examples for pull requests, support tickets, docs, and automated tests.
Keep everyday conversion work local in the browser instead of uploading sensitive data.
Input TOML example:
app.name = "jsonkit-api" app.version = "1.0.0" app.enabled = true app.ports = [3000, 3001] [app.database] host = "localhost" port = 5432 ssl = false
Output JSON example:
{
"app": {
"name": "jsonkit-api",
"version": "1.0.0",
"enabled": true,
"ports": [
3000,
3001
],
"database": {
"host": "localhost",
"port": 5432,
"ssl": false
}
}
}Yes. It is free and runs directly in your browser.
No. Parsing happens locally in your browser.
Yes. You can copy or download the generated JSON.