JSON Table Viewer
Paste a JSON array of objects to browse it as a sortable table — click any column header to sort, entirely in your browser.
🔒 This tool runs entirely in your browser. Your files are never uploaded to a server.
Click a column header to sort by that column.
How the JSON table viewer works
- Paste a JSON array of objects.
- Every distinct key across the objects becomes a column, and each object becomes one row.
- Click any column header to sort by that column, ascending or descending.
FAQ
What JSON structure does this expect?
A JSON array of objects — like [{"name": "A", "price": 1}, {"name": "B", "price": 2}]. Each object becomes one table row, and every distinct key across all objects becomes a column.
What if some objects are missing a field others have?
That row simply shows an empty cell in that column — the table still includes every key found across any object, so nothing is silently dropped.
How does sorting handle mixed types?
If both values being compared are numbers, they're sorted numerically; otherwise they're compared as text. Click a column header once to sort ascending, click again to reverse to descending.
Is my JSON sent anywhere?
No. Parsing and rendering happen entirely in your browser as you type — nothing is sent to Online Tool Store or stored.
How we compare
| Feature | Online Tool Store | JSON Crack | Reading raw JSON |
|---|---|---|---|
| Sortable table view | ✓ | Tree/graph view instead | Not applicable |
| Instant as you paste | ✓ | ✓ | Slow for long arrays |
| No ads or sign-up | ✓ | ✓ | ✓ |
For quickly browsing a JSON array as a readable, sortable table instead of raw brackets, the Online Tool Store JSON Table Viewer makes it scannable instantly.