Google Super

GOOGLESUPER_GEOCODING_API

DEPRECATED: Legacy API to convert addresses into geographic coordinates (latitude and longitude) and vice versa (reverse geocoding), or get an address for a Place ID. This API only works with API keys (no OAuth2 support). Consider using the modern Places API (Text Search or Nearby Search) for similar functionality with OAuth2 authentication.

Remote googlesuper

Other tools also called GOOGLESUPER_GEOCODING_API? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "title": "Key",
      "default": null,
      "examples": [
        "YOUR_API_KEY"
      ],
      "nullable": true,
      "description": "Your application's API key. If not provided, will be extracted from connection metadata."
    },
    "bounds": {
      "type": "string",
      "title": "Bounds",
      "default": null,
      "examples": [
        "34.172684,-118.604794|34.236144,-118.500938"
      ],
      "nullable": true,
      "description": "The bounding box of the viewport within which to bias geocode results more prominently (e.g., '34.172684,-118.604794|34.236144,-118.500938'). This parameter will only influence, not fully restrict, results."
    },
    "latlng": {
      "type": "string",
      "title": "Latlng",
      "default": null,
      "examples": [
        "40.714224,-73.961452"
      ],
      "nullable": true,
      "description": "The latitude and longitude coordinates specifying the location for which you want the closest, human-readable address (e.g., '40.714224,-73.961452'). Provide for reverse geocoding."
    },
    "region": {
      "type": "string",
      "title": "Region",
      "default": null,
      "examples": [
        "US",
        "ES"
      ],
      "nullable": true,
      "description": "The region code, specified as a ccTLD ('top-level domain') two-character value. This parameter will only influence, not fully restrict, results from the geocoder."
    },
    "address": {
      "type": "string",
      "title": "Address",
      "default": null,
      "examples": [
        "1600 Amphitheatre Parkway, Mountain View, CA"
      ],
      "nullable": true,
      "description": "The street address or plus code that you want to geocode. Provide for geocoding (address to coordinates)."
    },
    "language": {
      "type": "string",
      "title": "Language",
      "default": null,
      "examples": [
        "en",
        "es"
      ],
      "nullable": true,
      "description": "The language in which to return results. If language is not supplied, the geocoder attempts to use the preferred language as specified in the Accept-Language header, or the native language of the domain from which the request is sent."
    },
    "place_id": {
      "type": "string",
      "title": "Place Id",
      "default": null,
      "examples": [
        "ChIJd8BlQ2BZwokRAFUEcm_qrcA"
      ],
      "nullable": true,
      "description": "The place ID of the place for which you wish to obtain the human-readable address. Provide for place ID geocoding."
    },
    "components": {
      "type": "string",
      "title": "Components",
      "default": null,
      "examples": [
        "postal_code:94043|country:US"
      ],
      "nullable": true,
      "description": "A components filter with elements separated by a pipe (|). E.g., 'postal_code:94043|country:US'. Used for geocoding, can be restrictive or biasing."
    },
    "result_type": {
      "type": "string",
      "title": "Result Type",
      "default": null,
      "examples": [
        "street_address|locality"
      ],
      "nullable": true,
      "description": "A filter of one or more address types, separated by a pipe (|) (e.g., 'street_address|locality'). Used for reverse geocoding and place ID geocoding."
    },
    "location_type": {
      "type": "string",
      "title": "Location Type",
      "default": null,
      "examples": [
        "ROOFTOP|RANGE_INTERPOLATED"
      ],
      "nullable": true,
      "description": "A filter of one or more location types, separated by a pipe (|) (e.g., 'ROOFTOP|RANGE_INTERPOLATED'). Used for reverse geocoding and place ID geocoding."
    },
    "extra_computations": {
      "type": "array",
      "items": {
        "enum": [
          "ADDRESS_DESCRIPTORS",
          "BUILDING_AND_ENTRANCES"
        ],
        "type": "string",
        "title": "ExtraComputationEnum",
        "properties": {}
      },
      "title": "Extra Computations",
      "default": null,
      "examples": [
        [
          "ADDRESS_DESCRIPTORS"
        ]
      ],
      "nullable": true,
      "description": "Use this parameter to specify additional features in the response. Can select multiple values."
    }
  }
}