Convert JSON to TSV online — browser-local

Paste JSON and get TSV output with zero server uploads. Everything runs locally in your browser.

Loading…
JSON → TSV — developer guide
JSON → TSV converter with the same privacy guarantees as other FastMinify tools.

Developer notes

• Validate inputs upstream. • Reverse conversions may be lossy depending on format. • Large files: prefer desktop browsers.

Use cases

• Quick prototyping between formats. • Lightweight CI pipelines without middleware. • Config review before commit.

About these options

CSV exports: choose a delimiter (Auto follows locale — semicolon on /fr), RFC-minimal vs always-quoted fields, line endings, and whether to emit a header row. CSV imports: delimiter + whether row 1 holds column names (Auto delimiter follows locale only for convenience). JSON output (XML, YAML, or CSV sources): indentation (including compact one-line) and optional recursive key sort. JSON → XML: toggle pretty-printing and indent width. YAML output: indent width, readable vs tighter layout, and deterministic string quoting (there is no source YAML file to “preserve”). XML comments are not represented in the intermediate JSON tree.

Examples

Basic example

Input

[ {"id": 1, "sku": "FM-001", "tier": "gold", "active": true}, {"id": 2, "sku": "FM-002", "tier": "silver", "active": false}, {"id": 3, "sku": "FM-003", "tier": "trial", "active": true} ]

Output

id sku tier active 1 FM-001 gold true 2 FM-002 silver false 3 FM-003 trial true

Second example

Input

[ {"id": 1, "sku": "FM-001", "tier": "gold", "active": true}, {"id": 2, "sku": "FM-002", "tier": "silver", "active": false}, {"id": 3, "sku": "FM-003", "tier": "trial", "active": true} ]

Output

id sku tier active 1 FM-001 gold true 2 FM-002 silver false 3 FM-003 trial true

Related tools

Explore other converters from the same source format in the sibling links section.

JSON → TSV FAQ

Privacy and limits

Is my data sent to the server?

No — everything stays in your browser.

What inputs are supported?

A documented subset; invalid input shows a clear error.

Can I download the result?

Yes — use Download after a successful conversion.

Looking for converters, encoders, formatters, and minifiers in one place? Developer tools hub Open the curated developer tools catalogue.