Questions tagged [google-search-api]

The Google Custom Search API enables licensed API access, via REST calls, to the Google search engine.

The Google Custom Search API exposes the Google search via a REST API. Invoking the service requires an API Key, and allows a fixed number of free calls before charges begin. It is a replacement/re-branding of the previous Google Search APIs which are deprecated as of 2010.

The API can handle requests in JSON or XML format.

Information on the API is available from Google: https://developers.google.com/custom-search/json-api/v1/overview

644 questions
18
votes
2 answers

Getting more than 10 results by Google Custom Search API V1 in Java

I am using Google Custom Search API in Java to get results of Google in response to a query. I have written this code with the help of other posts, code is as follows: url = new URL("https://www.googleapis.com/customsearch/v1?key="+key+ "&cx="+…
Joy
  • 4,197
  • 14
  • 61
  • 131
17
votes
1 answer

Does google allow businesses to use "Did you Mean" feature as an api?? I would like to use it but I am not getting anything

I want to use Google API for Did you mean feature. So basically I want to write a piece of code, which sends a word to Google search and either Google finds the exact hits or gives a "DID YOU MEAN" reply which i would use. Is it made available?…
15
votes
3 answers

How to query an advanced search with google customsearch API?

How can I programmatically using the Google Python client library do an advanced search with Google custom search API search engine in order to return a list of first n links based in some terms and parameters of an advanced search I queried?. I…
15
votes
1 answer

Number of results google (or other) search programmatically

I am making a little personal project. Ideally I would like to be able to make programmatically a google search and have the count of results. (My goal is to compare the results count between a lot (100000+) of different phrases). Is there a free…
LastMove
  • 2,482
  • 1
  • 15
  • 25
15
votes
1 answer

Get first image from google

I want to display the first image on google search in my website against a keyword. I would really like some pointers in this direction. Thank you!
darthsidious
  • 2,851
  • 3
  • 19
  • 30
13
votes
6 answers

google search with python requests library

(I've tried looking but all of the other answers seem to be using urllib2) I've just started trying to use requests, but I'm still not very clear on how to send or request something additional from the page. For example, I'll have import…
James
  • 2,635
  • 5
  • 23
  • 30
12
votes
1 answer

Google Custom Search Engine pricing

The pricing regarding CSE is a little bit vague: For CSE users, the API provides 100 search queries per day for free. If you need more, you may sign up for billing in the API Console. Additional requests cost $5 per 1000 queries, up to 10k queries…
eithed
  • 3,933
  • 6
  • 40
  • 60
12
votes
2 answers

Is there a google API to read cached content?

I know you can go to http://webcache.googleusercontent.com/search?q=cache:http://example.com/ to view Google's cache of any URL, but do they provide an API to hit thousands of these and pay for access? I don't want to just make HTTP GETs to these…
11
votes
1 answer

Google CustomSearch ignores imgType?

It would seem that using the google CSE api always ignores my imgType attribute, even through their official API test page. My request is: { "q": "Maimi Yajima", "cx": "014585077406021600032:tu4nwhtmr5q", "searchType": "image", …
iTayb
  • 12,373
  • 24
  • 81
  • 135
11
votes
1 answer

Google App Engine (python) : Search API : String Search

i am using the Google App Engine Search API (https://developers.google.com/appengine/docs/python/search/). I have indexed all of the entities and the search is working fine. but only if i search for the exact matches else it returns 0 results. For…
Amyth
  • 32,527
  • 26
  • 93
  • 135
11
votes
5 answers

Google search API wrapper for Node.js

I am looking for a Google search API wrapper to be used in Node.js, I have searched around but haven't found something updated and fully baked. Can anyone please recommend something working? Thanks
user971956
  • 3,088
  • 7
  • 30
  • 47
10
votes
3 answers

Google Search API site limit

According to the Google custom search API's docs: http://code.google.com/apis/customsearch/docs/start.html#sites there is a limit of up to 5000 sites that you can search. This is pretty lame. Is there any way around this so that I can search the…
Justin Meltzer
  • 13,318
  • 32
  • 117
  • 182
10
votes
2 answers

Alternative for https://ajax.googleapis.com/ajax/services/search/images?v=1.0

These days I noticed that Google Search API for images which I'm using on my project is no longer available, e.g. https://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=apple returns { "responseData": null, "responseDetails": "This…
Limon Monte
  • 52,539
  • 45
  • 182
  • 213
9
votes
2 answers

Google Custom Search API Autocomplete?

We're using the google custom search API (paid-for server-side API) to power our search results. I'd like to add an autocomplete feature to the search - however, does anyone know if there is support for this (either via the server-side API, or via…
Kram
  • 4,099
  • 4
  • 39
  • 60
9
votes
2 answers

How does Google Chrome suggest url completions?

I've learned about Google's (unofficial) suggest API and their search API, which both look really great, but the suggest API doesn't actually suggest navigational completions. On the other hand, in Google Chrome if you start to type for example…
devios1
  • 36,899
  • 45
  • 162
  • 260
1
2
3
42 43