Reputation: 9827
I'm trying to use the google rest api, http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=monkey&rsz=8 as described api spec here. It looks like 8 results is the max and that just doesn't seem sensible to me. Am I missing something? I'm able to append rsz=8 parameter but can't go any higher than 8 or the api returns an error response. Any ideas?
Upvotes: 1
Views: 1286
Reputation: 14558
With the rest api you will get 8 results per page and a maximum of 20 pages.
Upvotes: 2
Reputation: 8677
google limits you for 'performance' reasons. If there was no limit their servers would get hammered
Upvotes: 0