Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Web Search API returns only the first 100 result set

Is there a way to search and retrieve all results for a particular query in Google? I want to use Custom Search API, but the starting index of the result set can be 99 at most (http://code.google.com/apis/customsearch/v1/using_rest.html) Which means I can retrieve only the first 100 items. In my case, there are around 4000 items in the result set.

Thanks.

like image 442
Ruggiero Spearman Avatar asked Nov 27 '22 12:11

Ruggiero Spearman


1 Answers

You can retrieve about 1000 results: 100 pages with 10 results each. See: http://code.google.com/apis/customsearch/v1/using_rest.html#query-params

It seems as if you can't go beyond that, though.

UPDATE: I stand corrected. It's only 100.

like image 137
Johannes Fahrenkrug Avatar answered Dec 06 '22 11:12

Johannes Fahrenkrug