JSONL Viewer

View JSONL (newline-delimited JSON) files in a paginated table. Paste up to thousands of lines, search, filter, expand individual records. Files never leave your browser.

What is this for?

JSONL (also called NDJSON — newline-delimited JSON) is the de facto format for LLM training data, audit logs, event streams, and batch API outputs. One JSON object per line, no enclosing array. It's append-friendly, parses line by line, and survives partial corruption. Reading it as a human is painful though — you want a table, not a wall of curly braces. This tool gives you that table in your browser. Nothing uploaded; the file gets read with the browser's FileReader and parsed on the spot.

When to use it

How the parsing works

Common gotchas