Browsing SERP pagination
How to access additional pages of results for any search engine.
Using Nimble pagination
Having received the first page of results for a chosen search term, it is often desirable to access the next page of results, available through pagination. Nimble's SERP API makes this easy by providing request-ready paginated URLs at the bottom of each request.
For example:
Each of the provided URLs contains identical parameters to the original request, as well as an offset to access paginated pages.
In the below example, a request is written to access the next page's results:
All of the original request's parameters are transmitted through the URL automatically, with the exception of your credential string, which needs to be manually reapplied.
Infinite scrolling SERPs
Search engines often alternate between pagination and infinite scrolling methods depending on location, device, search term, and other variables. In cases where the SERP you requested uses infinite scrolling instead of pagination, only a single URL next_page_url
will be provided, which leads to the next batch of results, as in the example below:
Last updated