Does google provide an API to access its search results?

The latest information I can find about this is based on this 2008 article which doesn't seem to exist anymore.

UPDATE

I do not want to be using Google custom search for my own site but rather access Google's results in the search engine results page naturally.

link|improve this question

@Nai Regarding your update, if you look at custom search you will see that it is an API for web search. Don't let the name confuse you. See my answer here for an example. – marcog Dec 22 '10 at 22:26
@marcog Its not just the name but the description as well! " Google Custom Search enables you to search over a website or a collection of websites. You can harness the power of Google to create a search engine tailored to your needs and interests, and you can present the results in your website. Your custom search engine can prioritize or restrict search results based on websites you specify." Don't suppose you have an example in C# as well? :) – super9 Dec 23 '10 at 15:01
@Nai I don't know C#, but all you need is a module that can fetch a URL. The URL is independent of the language. – marcog Dec 23 '10 at 15:03
@marcog Thanks anyway. I'm just gonna dive in and get busy. – super9 Dec 23 '10 at 15:05
@Nai This might help you: stackoverflow.com/questions/295557/… – marcog Dec 23 '10 at 15:07
show 6 more comments
feedback

5 Answers

The original search API was deprecated in favour of the new custom search API. You can also find a lot of related info in the google-search-api tag which you even tagged this question with.

link|improve this answer
2  
The custom search API can be used to search the whole web: google.com/support/customsearch/bin/answer.py?answer=1210656 – mattmanser Oct 7 '11 at 9:02
feedback

Do you really need an API? If you just make a call to http://www.google.co.uk/search?q=testsearch for example it will return the results for 'testsearch'.

You haven't mentioned how you will be retrieving the results but you could use a webClient control in ASP.NET or something as simple as parsing the returned HTML.

link|improve this answer
2  
Careful with this one. You may be in violation of Google's terms of use. Also, Google may present a CAPCHA to your request if you send too many - google.com/support/websearch/bin/…. – dana Dec 22 '10 at 17:21
@dana - Good point. To be honest I've never had a need for a search API so far hence this was my best guess – m.edmondson Dec 22 '10 at 19:30
feedback

See: Google Search APIs

Specifically, you might be interested in this link:JSON/Atom Custom Search API

link|improve this answer
feedback

You can use the Custom Search API

THeis is the recommended replacement to the Web Search API which has been deprecated.

link|improve this answer
feedback

Would you consider using Bing? It appears that they have a web search API, although I'm not sure about the costs and/or terms of use.

Yahoo! has one too...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.