JSON to Table Viewer — Render JSON as Sortable HTML Table
Paste a JSON array and get a sortable HTML table. Click column headers to sort, handles nested objects and arrays as strings. Perfect for inspecting API responses or spreadsheets. 100% local.
Last updated:
CommentsPaste a JSON array to render it as a sortable HTML table — click column headers to sort, like a spreadsheet for API data.
| name | age | city |
|---|---|---|
| Alice | 30 | NYC |
| Bob | 25 | LA |
| Charlie | 35 | SF |
What is JSON to Table?
JSON Table Viewer transforms a JSON array of objects into a sortable, scannable table. Click any column header to sort ascending or descending. It's designed for exploring API responses, database exports, and spreadsheet data migrated to JSON — in the same way you'd use Excel or Google Sheets to browse and filter a dataset.
How to view JSON as a table
- 1Paste your JSON array.
- 2The table renders automatically with column headers from the object keys.
- 3Click any column header to sort.
Frequently Asked Questions
What's the difference between JSON Table and JSON Formatter?
JSON Formatter shows a tree view or beautified JSON. JSON to Table renders data as a rows-and-columns spreadsheet — more like Excel or a database table. Use Table when you want to scan, sort, and compare values.
Can I sort by any column?
Yes — click any column header to sort. Click again to reverse the sort order. Sorting is alphabetical, so number columns sort as strings (1, 10, 2, not 1, 2, 10).
How many rows can it handle?
It renders up to 500 rows to keep the browser responsive. For larger datasets, consider using a spreadsheet or a dedicated table library.
Try Next
JSON Escape
Escape strings for use inside JSON, or unescape JSON string literals back to plain text. Handles quotes, newlines, tabs, and Unicode.
Related Tools
JSON Formatter
Format, beautify, and validate JSON online. Free, fast, and 100% local — your data never leaves your browser.
JSON Validator
Validate JSON online with instant error location and structure statistics (depth, keys, node types). 100% local — your JSON never leaves the browser.
JSON Schema Validator
Validate a JSON payload against a JSON Schema online. Supports Draft 2020-12, format validation (date-time, uuid, email, uri), and shows errors by JSON pointer path. 100% local — nothing is uploaded.
JSON Schema Generator
Generate a JSON Schema from a sample JSON — output as standard Draft 2020-12, OpenAI function calling schema, or Anthropic tool_use schema. Powers LLM structured output pipelines.
JSONPath Tester
Test JSONPath expressions against sample JSON online. Get instant, highlighted results for queries like $.store.book[*].author.
JSON Diff
Compare two JSON documents structurally and see added, removed, and changed values by path. Handles nested objects, arrays, and type changes.