Paginating Results
Typically, large collections of results from the Places (Search) API are paginated – divided into a list of pages – using hyperlinks to point to the previous page and the next page. These collections are wrapped in an object that provides details on both the pagination status and the items in the current page.
Depending on your use case, the available
attribute may be present. This attribute holds the total number of items available for a place. However, the number of items in the available
attribute depends on the number of results for the particular place and the use case criteria. For example, if you search for an airport, the API may return a response where the first page contains only results within a maximum distance. In this scenario, when you request for the next page, the API could return results with a larger maximum distance.
{
"available": 26,
"next": "http://alphabet.com/page/3",
"offset": 3,
"items": ["d", "e", "f"]
}