How to Use
- Paste a JSON object or array of objects into the input panel.
- Choose delimiter and header options.
- Convert the JSON and review the CSV preview.
- If the JSON is not tabular, check the error message.
- Copy the output or download a CSV file.
Core Features
- JSON to CSV conversion: Turn JSON objects or arrays of objects into copyable, downloadable CSV.
- Nested field flattening: Turn nested objects into dotted column names such as
user.email. - Header and delimiter controls: Include headers and switch between comma, semicolon, or tab separators.
- Copy or download: Preview CSV, copy it, or download a
.csvfile for the next step. - Local data workflow: API responses, logs, and business data are converted in your browser without uploads.
Related Tools
Secure JSON formatter: format, validate, and fix JSON locally. Beautify/minify, highlight errors, generate TypeScript or Zod, convert to XMLโprivate. Try now.
Free JSONPath tester and evaluator for API JSON. Extract matching nodes in real time, inspect paths, and copy JSON results while parsing stays local in your browser.
Convert CSV text or files to JSON arrays locally in your browser. Supports headers, comma/semicolon/tab delimiters, drag-and-drop files, copy, and download with no uploads.
Compare two JSON documents locally in your browser. Sort object keys for a semantic diff, ignore key-order noise, and mark added, removed, and modified fields without uploads.
Minify JSON into one line, remove indentation and line breaks, and compare original size, minified size, saved bytes, and saved percentage.
Free online JSON to TypeScript converter. Instantly generate TypeScript interfaces and types from your JSON payloads. 100% private, client-side code generation.
Convert YAML to formatted JSON locally in your browser. This developer tool supports live conversion, multi-document YAML, line-aware errors, copy, and JSON download without storing data.
Convert JSON to YAML locally in your browser with live conversion, strict JSON validation, error details when available, copy, and YAML download. No data is uploaded.
Calculation Logic
CSV is tabular, so JSON must be mapped into rows and columns:
- Arrays of objects become multiple rows, and object keys become headers.
- Nested objects are flattened into dotted fields such as
profile.name. - Missing fields become empty cells.
- Values containing commas, quotes, or line breaks are quoted and escaped according to CSV rules.
FAQ
Is my JSON uploaded?
No. Conversion runs locally in your browser, and JSON content is not uploaded to a server.
What JSON shapes work best?
Arrays of objects work best, such as [{ "id": 1 }, { "id": 2 }]. A single object converts into one row.
Can this handle nested JSON?
Nested objects are flattened into dotted column names. Arrays are joined into a single cell with semicolons.
Can I download a CSV file?
Yes. You can copy the CSV output or download it as a .csv file.
Does the output work in Excel?
The tool outputs standard CSV. Excel and Google Sheets can usually open it, but regional delimiter settings may vary.
Which delimiter should I use?
Comma is common in English-language workflows. If your spreadsheet app uses regional settings, try semicolon or tab.