0

I'm iterating over pages to get all results for a given request to the Bing Search V7 API (https://api.bing.microsoft.com/v7.0/search):

{'q': 'tiramisu', 'offset': 0}
{'q': 'tiramisu', 'offset': 50}
{'q': 'tiramisu', 'offset': 100}

I notice that after 50-100 results, nothing new is given. So in practice, we cannot get more than 100 results, even though the totalEstimatedMatches is much larger (38100000 for tiramisu).

Why? How to fix this?

Notes: Per the documentation:

Martin Monperrus
  • 1,845
  • 2
  • 19
  • 28

1 Answers1

-1

Ronak suggests in Unable to paginate through all bing API results is that this is due to the fact that the API is designed for human users, who typically never go beyond 2-3 search pages.

Martin Monperrus
  • 1,845
  • 2
  • 19
  • 28