any public api which I can test jsonp ajax call?

ajax, javascript, jquery

Solution

jsfiddle provides an echo facility which is quite useful: http://doc.jsfiddle.net/use/echo.html

JSONP URL: http://jsfiddle.net/echo/jsonp/

Data has to be provided via GET. jsFiddle will respond all data given in request. It uses URL with host and protocol as it’s loaded from different domain. callback and delay will not be returned.

callback name of the jsonp function delay optional, it’s a time in seconds after which data should be returned

Problem

Besides Twitter, I am wondering anyone knows any public web API whcih I can try ajax call with jsonp protocol?

Original source