Pagination
The response of a google search will contain a pagination
property with all the necessary information, to access other pages from your search.
Pagination JSON
{
...
'pagination': {
'other_pages': 'Object - Lists the rest of the pages with the key set as the page number and the value as the page link',
'next': 'String - Link to the next page',
'current': 'Integer - The value of the current page'
},
...
}
Pagination examples