views:

112

answers:

1

im tryin to integrate my twitter search with google so that the query will show both twitter and google feedback BUT does google have an search api like twitter does where it will be able to send me back a json feed

then what is the url that i need to use like in the case of twitter we use

search.twitter.com/search.json?q=twitter&callback=myfunction which i send to a $.getJSON function

then wat will the url be in the case of google that will give exactly same same type of result structure ??

Any help will be highly appreciated

Thank You

Anand

+1  A: 

Executive Summary: Yes, they have a REST interface that returns JSON.

The Google Search API documentation reveals all.

Tony Miller