Loading...
Loading...
Convert tab-separated values into formatted JSON for APIs, scripts, and data cleanup.
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.
TSV Input
JSON Output
This converter reads the first TSV row as headers, converts each following row into an object, 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 TSV example:
id name email role active 1 Alice Johnson alice@example.com Engineer true 2 Bob Smith bob@example.com Designer false
Output JSON example:
[
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"role": "Engineer",
"active": true
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"role": "Designer",
"active": false
}
]Yes. It is free and runs directly in your browser.
Yes. The first TSV row is used as the JSON field names.
Yes. You can copy it or download a .json file.