31

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?

Mariano Desanze
  • 7,847
  • 7
  • 46
  • 67
hakan
  • 886
  • 2
  • 8
  • 15
  • 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 Answers6

19

Great online tools:

Downloadable tool built on .NET:

  • JSON Viewer

    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

Mariano Desanze
  • 7,847
  • 7
  • 46
  • 67
  • Yes! http://chris.photobooks.com/json/default.htm is very useful.. – Learner Nov 06 '15 at 06:58
  • 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
  • 1
    I 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
10
youknowone
  • 919
  • 6
  • 14
10

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.

Brenton Fletcher
  • 1,280
  • 10
  • 15
5

I use JsonLint, a web based validator and reformatter for JSON. Upon validation, it also reformats the JSON file so that it is easier to read.

luvieere
  • 37,065
  • 18
  • 127
  • 179
5

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.

Sky Sanders
  • 36,396
  • 8
  • 69
  • 90
3

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 ;)

visualizer.json2html.com

Chad Brown
  • 1,627
  • 1
  • 13
  • 22