Skip to content
uxTools
Data & Formats

JSON Formatter / Diff / Path Tool

Use one panel for pretty print, JSONPath checks, side-by-side JSON diffing, and quick schema discovery.

Workbench

Switch between formatting, JSONPath queries, JSON diff, and schema inference without leaving the page.

Formatted preview

{
  "users": [
    {
      "id": 1,
      "name": "Ada",
      "roles": [
        "admin",
        "editor"
      ]
    },
    {
      "id": 2,
      "name": "Lin",
      "roles": [
        "viewer"
      ]
    }
  ]
}

Output

Copy the current result directly into your editor or docs.

{
  "users": [
    {
      "id": 1,
      "name": "Ada",
      "roles": [
        "admin",
        "editor"
      ]
    },
    {
      "id": 2,
      "name": "Lin",
      "roles": [
        "viewer"
      ]
    }
  ]
}