4 ms·
Thanks for the heads up on Jason. I work with a lot of web apis and this looks like a great tool for browsing json responses.
by hellotoby 15y ago
Thanks for the heads up on Jason. I work with a lot of web apis and this looks like a great tool for browsing json responses.
- jhuckestein 15y agoThe webkit inspector is also great for that. you can paste js and browse it in a nice way. On most pages you can even just open the inspector (cmd alt i) and do $.get() to inspect json from random places
- zzzmarcus 15y agoThis is also a great website for quickly viewing prettyified json: http://json.parser.online.fr/ http://json.parser.online.fr/
- albemuth 15y agoAnother great way is via the json ruby gem, which installs a prettifier which can be used from the command line, like this: curl 'http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitter&include_rts=1 | prettify_json.rb| less
- rahim 15y agoAnother way to do it without having to install anything extra: curl "http://api.twitter.com/1/statuses/user_timeline.json?screen_name=twitter&include_rts=1 http://api.twitter.com/1/statuses/user_timeline.json?screen_... | python -m json.tool | pbcopy
- pencilcode 15y agoI use the Chrome extension JsonViewer. It automatically formats the json. Great for api inspection.
- huytoan_pc 15y agoI use this Chrome extension to view JSON responses directly in browser https://chrome.google.com/webstore/detail/chklaanhfefbnpoihckbnefhakgolnmc https://chrome.google.com/webstore/detail/chklaanhfefbnpoihc...