Google Super

GOOGLESUPER_NEARBY_SEARCH

Searches for places (e.g., restaurants, parks) within a specified circular area, with options to filter by place types and customize the returned fields and number of results.

Remote googlesuper

Other tools also called GOOGLESUPER_NEARBY_SEARCH? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "radius": {
      "type": "number",
      "title": "Radius",
      "maximum": 50000,
      "minimum": 0,
      "examples": [
        1500,
        5000
      ],
      "description": "Radius of the circular search area in meters."
    },
    "latitude": {
      "type": "number",
      "title": "Latitude",
      "maximum": 90,
      "minimum": -90,
      "examples": [
        -33.8670522,
        34.052235
      ],
      "description": "Latitude coordinate of the search center in decimal degrees."
    },
    "fieldMask": {
      "type": "string",
      "title": "Field Mask",
      "default": "places.displayName",
      "examples": [
        "places.displayName",
        "places.id,places.formattedAddress,places.types",
        "*"
      ],
      "description": "Comma-separated list of place fields for the response (e.g., 'places.displayName,places.formattedAddress'); use '*' for all fields."
    },
    "longitude": {
      "type": "number",
      "title": "Longitude",
      "maximum": 180,
      "minimum": -180,
      "examples": [
        151.1957362,
        -118.243683
      ],
      "description": "Longitude coordinate of the search center in decimal degrees."
    },
    "excludedTypes": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Excluded Types",
      "default": null,
      "examples": [
        [
          "cafe"
        ],
        [
          "store"
        ]
      ],
      "nullable": true,
      "description": "Place types to exclude (e.g., 'cafe', 'store'); results matching any of these types are omitted. For supported types, see Google Maps Places API documentation."
    },
    "includedTypes": {
      "type": "array",
      "items": {
        "type": "string",
        "properties": {}
      },
      "title": "Included Types",
      "default": null,
      "examples": [
        [
          "restaurant"
        ],
        [
          "atm",
          "bank"
        ],
        [
          "park"
        ]
      ],
      "nullable": true,
      "description": "Place types to include (e.g., 'restaurant', 'park'); results will match at least one of these types. For supported types, see Google Maps Places API documentation."
    },
    "maxResultCount": {
      "type": "integer",
      "title": "Max Result Count",
      "default": 10,
      "examples": [
        5,
        10,
        20
      ],
      "description": "Maximum number of search results to return (up to 20); the actual count may be lower."
    }
  }
}