Skip to main content
Back to Home

JSON to CSV

Select or drop your file

Files never leave your deviceMax size: 100MB

Frequently Asked Questions

Is converting JSON to CSV with PDFPilot really free?

Yes. JSON to CSV is completely free to use, with no sign-up or account required.

Are my files uploaded to a server?

No. The conversion runs entirely in your browser. Your file is never uploaded to PDFPilot's servers.

What JSON structure does this tool expect?

A JSON array of flat objects — for example [{"Name":"Alice","Age":30}, {"Name":"Bob","Age":25}]. This matches how most APIs and databases export tabular data as JSON.

What happens if objects have different keys?

The output columns are the union of every object's keys. An object missing a given key produces an empty cell for that column rather than shifting other columns.

What if my JSON has nested objects or arrays as values?

A nested object or array value is stored as its JSON string representation in that cell, since CSV has no native way to represent nested structure. This tool doesn't flatten nested data automatically.

Can I convert a single JSON object instead of an array?

No — this tool expects an array, since CSV is inherently a table of rows. A single object has no rows to produce.