JSON 图谱

将 JSON 结构可视化为交互图

JSON Input

Loading editor...

Graph View

Graph visualization will appear here...

See how a JSON document is connected, not just nested

Tree views show hierarchy, but they hide relationships — a node that references another node deep elsewhere looks the same as a leaf value. A graph view renders those relationships as a network, so you can spot cycles, identify hubs, and understand the shape of a document at a glance.

Use the graph when you need to

Map a complex API response

Render a deeply linked response as a graph to see which entities reference which.

Debug references in a config file

Visualize anchor and alias relationships, or any $ref-style pointers, instead of chasing them by hand.

Onboard onto a new dataset

See the big-picture shape of an unfamiliar JSON document before drilling into specific values.

How to visualize JSON as a graph

  1. 1

    Paste your JSON into the editor.

  2. 2

    Wait for the graph to render with nodes for objects and arrays.

  3. 3

    Drag, zoom, and click nodes to inspect values and follow relationships.

Common graph workflows

Audit a config with cross-references

Use the graph to spot circular references or unused nodes in a complex config.

Reverse-engineer a GraphQL response

Render the response as a graph to see how related entities connect.

Document an unfamiliar payload

Capture a screenshot of the graph for a teammate trying to understand the data shape.

相关工具

常见问题

粘贴 JSON 后,工具会渲染一个可交互的节点图:每个对象/数组会变成一个节点,节点之间用边表示父子关系。你可以拖拽节点、缩放视图,并点击查看具体值。

当 JSON 很复杂、嵌套很深、引用关系多时,图视图最有帮助。尤其适合分析 API 响应、配置文件,或任何需要快速把握整体结构的 JSON。

目前图是在浏览器里交互展示的。需要截图的话请使用操作系统自带的截图工具。我们正在考虑加入直接导出 PNG/SVG 的功能。

图视图一般能比较流畅地处理约 1MB 的 JSON。节点数上千时渲染可能变慢。更大的数据建议改用 Tree View 或 Size Analyzer。