JSON Table Viewer
Render JSON arrays of objects as a sortable, searchable HTML table with column filtering
| # | name | age | city | score |
|---|---|---|---|---|
| 1 | Alice | 30 | New York | 95.5 |
| 2 | Bob | 25 | London | 87.2 |
| 3 | Carol | 35 | Tokyo | 92.1 |
| 4 | Dave | 28 | Paris | 78.4 |
How it works
- • Paste a JSON array of objects — nested objects are flattened with dot notation.
- • Click column headers to sort. Use the filter box to search all columns.
- • Export the filtered result as CSV or copy as JSON.
JSON Table Viewer
Render JSON arrays of objects as a sortable, searchable table. Paste any JSON array and instantly get a spreadsheet-like view with column filtering and export.
FAQ
What format does the JSON need to be?
An array of objects: [{"name":"Alice","age":30},{"name":"Bob","age":25}]. All objects should share the same keys for the table columns to work correctly.
Can I export the table to CSV?
Yes — use the Export button to download the displayed data as a CSV file.
What is the maximum number of rows supported?
The viewer handles thousands of rows without issues. For very large datasets (100k+ rows), performance may slow down — consider filtering first.
Continue Exploring
Other Data & Spreadsheet you might like...
CSV Viewer & Editor
View, sort, filter, and inspect CSV files as an interactive table — all in your browser
Excel to CSV Converter
Convert XLSX and XLS Excel files to CSV format — no upload, runs in your browser via SheetJS
CSV Column Extractor
Pick specific columns from a CSV file and download the result — great for cleaning large datasets
SQL on CSV
Run SQL SELECT queries directly on uploaded CSV files — no server needed
CSV Merger
Merge multiple CSV files into one — reorder, deduplicate rows, and handle headers automatically
Mock Data Generator
Generate realistic fake data — names, emails, addresses, UUIDs, dates, and custom fields — and export as JSON, CSV, or SQL INSERT statements
CSV Splitter
Split a large CSV file into smaller files by row count or by unique values in a column
JSON to Excel
Convert JSON arrays of objects to Excel (.xlsx) or CSV — powered by SheetJS, runs in your browser