JSON_TO_TABLE_V1
JSON to Table
Paste any JSON, pick the array you want to explore, and view it as a sortable, filterable table. Flatten nested fields with dot notation and export the result to CSV — all in your browser.
Path
search
check_circle4 of 4 rows · 4 columns
| # | ||||
|---|---|---|---|---|
| 1 | 1 | Alice | Designer | true |
| 2 | 2 | Bob | Engineer | false |
| 3 | 3 | Cara | PM | true |
| 4 | 4 | Dani | Engineer | true |
How does the path picker work?
The tool walks your JSON and surfaces every path that points to an array. So if your payload looks like { "data": { "users": [...] } }, you'll see $.data.users in the path dropdown — pick it and the table renders automatically.
What does “Flatten” do?
When enabled, nested objects become columns with dot notation — { user: { name: "Alice" } } renders as a user.name column. When disabled, nested objects are stringified into a single cell. Arrays in cells stay as JSON either way.