views:

746

answers:

5

Does anyone have any recommendations for applications or browser plugins that make browsing and visualizing JSON APIs easy.

+2  A: 

I'm not completely sure what you're asking.

  • If you're looking for a JSON viewer to examine complex JSON strings, take a look at JSON Visualizer.

  • If you're looking for a way to browse an API, consult that API's documentation.

John Feminella
+3  A: 

Johns tool is nice. Anoter nice online tool is http://jsonviewer.stack.hu/

henchman
+3  A: 

This one looks quite good, it's a firefox plugin called JSONView
https://addons.mozilla.org/en-US/firefox/addon/10869

Myster
A: 

For completeness there is also this http://www.codeplex.com/JsonViewer I have only tried the stand-alone, and it seems to do the basics ok. However the firefox plugin had less friction for what I was doing.

From the documentation:
The JSON View package is a set of 3 viewers available in the following flavors:

  1. A standalone viewer - JsonView.exe
  2. A plugin for Fiddler 2 (http://www.fiddler2.com/) - FiddlerJsonViewer.dll
  3. A visualizer for Viusal Studio 2005 - JsonVisualizer.dll
Myster
+1  A: 

Firebug in Firefox does the job when you have a url which returns json (Firebug is a must have for any web developer, if you don't have it installed already, you can get it here): with Firebug open and active navigate to your url in Firefox, in Firebug go to the Net tab, then click + sign next to your url in the grid, there should be a JSON tab available which you can use to explore your object in a tree view.

Stephen Swensen
I have firebug, don't know what I'd do without it. Mine does not have the json tab. it's v1.5.3
Myster
+1, Note: The tab does not show if the primary download is json. It works for secondary json resources. So for me JSONView does a better job for what I was looking for... but the net > json tab fills a separate role. thanks.
Myster