SearchPlacesResponse

Response from text search and nearby search

EnvironmentGeocodingGeolocationMapsNavigationPlacesRoutingSolar

Properties

Name Type Description
places array List of places matching the search criteria
nextPageToken string A token that can be sent as pageToken in a subsequent request to retrieve the next page of results.
View JSON Schema on GitHub

JSON Schema

google-maps-searchplacesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchPlacesResponse",
  "title": "SearchPlacesResponse",
  "type": "object",
  "description": "Response from text search and nearby search",
  "properties": {
    "places": {
      "type": "array",
      "description": "List of places matching the search criteria",
      "items": {
        "$ref": "#/components/schemas/Place"
      },
      "example": []
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token that can be sent as pageToken in a subsequent request to retrieve the next page of results.",
      "example": "example_value"
    }
  }
}