I need a program to visualize a json response from a URL or a json file, which organizes the data so it's more human readable. Any suggestions?
-
possible duplicate of [JSON viewer for browsing APIs](http://stackoverflow.com/questions/2368229/json-viewer-for-browsing-apis) – hadley Jul 24 '12 at 20:13
6 Answers
Great online tools:
json.parser.online.fr (Online JSON Parser)
Excellent for detecting invalid json, and shows both json-parse and eval methods.
jsonlint.com (JSONLint - The JSON Validator)
Open-source, has excellent validation of detecting invalid json, and beautifies JSON.
web.archive.org/.../chris.photobooks.com (JSON Visualization)
Shows json as html tables and is good for detecting invalid json
jsonviewer.stack.hu (Online JSON Viewer)
Nice if you want to traverse json as a tree with properties (but bad for invalid json)
Downloadable tool built on .NET:
-
Has a stand-alone viewer similar to the online viewer of the same name, but also has plugins for Fiddler 2 and Visual Studio 2005

- 7,847
- 7
- 46
- 67
-
-
I wrote this one: https://keyserv.solutions/VizBuild/VizBuild.html It is very similar to: http://chris.photobooks.com/json/default.htm – Jawid Hassim Jul 25 '20 at 22:07
-
1I found the chris.photobooks.com page through the waybackmachine. Here's a link: `http://web.archive.org/web/20200326113913/chris.photobooks.com/json/default.htm` – suchislife Aug 03 '23 at 17:43
- For mac: VisualJSON on appstore
- For web browser: JSONView as plugin
- For Terminal: httpie

- 919
- 6
- 14
To toot my own horn, I've also written a JSON visualizer - it can even fetch a remote url and visualize the JSON it returns.
You can find it at http://json.bloople.net.

- 1,280
- 10
- 15
If you are looking for an interactive online app, http://jsbeautifier.org/ works great and there are many suggestions for integrating the functionality into other environments.
You can either execute the core of jsbeautifier (beautify-cl.js) in a hosted js runtime or attempt to re-engineer it in the language of your choice.
If you need to reformat JSON at runtime in .net, I can suggest JSON.Net.

- 36,396
- 8
- 69
- 90
well to continue the trend here (a couple years later) here is another JSON Visualizer created by myself .. though this one a little bit prettier ;)

- 1,627
- 1
- 13
- 22