JSON Log Events to CSV Rows

Use this for an array of structured log events, not unparsed plain-text log files.

A specific workflow: JSON Log Events to CSV Rows

Inspect error frequency by exporting structured service logs to a filterable table.

Example input

[{ "time": "2026-08-31T10:00:00Z", "level": "error", "message": "timeout" }]

Expected output

time,level,message
2026-08-31T10:00:00Z,error,timeout

How to use JSON to CSV

  1. Paste or upload your JSON

    Drop one or more .json files into the editor, or paste an array of objects straight from an API response. Nothing is transmitted anywhere.

  2. Parsefy flattens the structure

    Nested objects become dot-notation columns such as user.address.city. Choose Multiple output and repeated arrays are split into their own related tables instead.

  3. Copy or download the CSV

    Take the result as a single CSV file, or as a ZIP of related tables when you split arrays — ready for Excel, Google Sheets or a database import.