Google Super

GOOGLESUPER_GET_DIRECTION

DEPRECATED: Legacy API that fetches detailed directions between an origin and a destination, supporting intermediate waypoints and various travel modes. This API only works with API keys (no OAuth2 support). Use the modern 'Get Route' action instead, which supports OAuth2 authentication.

Remote googlesuper

Other tools also called GOOGLESUPER_GET_DIRECTION? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "title": "Mode",
      "default": "driving",
      "examples": [
        "driving",
        "walking",
        "bicycling",
        "transit"
      ],
      "description": "The mode of transportation for which to calculate directions. Supported values are 'driving' (default), 'walking', 'bicycling', and 'transit'."
    },
    "avoid": {
      "type": "string",
      "title": "Avoid",
      "default": null,
      "examples": [
        "tolls",
        "highways",
        "ferries",
        "tolls|highways"
      ],
      "nullable": true,
      "description": "Specifies features to avoid in the generated route. Multiple values can be combined using a pipe delimiter (e.g., 'tolls|highways'). Valid options include 'tolls', 'highways', and 'ferries'."
    },
    "units": {
      "type": "string",
      "title": "Units",
      "default": "imperial",
      "examples": [
        "metric",
        "imperial"
      ],
      "description": "The unit system for displaying distances. Supported values are 'metric' (kilometers and meters) and 'imperial' (miles and feet). Defaults to 'imperial'."
    },
    "origin": {
      "type": "string",
      "title": "Origin",
      "examples": [
        "Disneyland",
        "123 Main St, Los Angeles, CA",
        "34.0522,-118.2437"
      ],
      "description": "The starting point for the directions. This can be a textual address (e.g., '123 Main St, Los Angeles, CA'), a place name (e.g., 'Disneyland'), or latitude/longitude coordinates (e.g., '34.0522,-118.2437')."
    },
    "language": {
      "type": "string",
      "title": "Language",
      "default": "en",
      "examples": [
        "en",
        "es",
        "fr"
      ],
      "description": "The language code for returning results, e.g., 'en' for English, 'es' for Spanish. Defaults to 'en'."
    },
    "waypoints": {
      "type": "string",
      "title": "Waypoints",
      "default": null,
      "examples": [
        "Hollywood Bowl,GettyCenter"
      ],
      "nullable": true,
      "description": "A comma-separated string of intermediate locations (addresses, place names, or coordinates) to visit between the origin and destination."
    },
    "destination": {
      "type": "string",
      "title": "Destination",
      "examples": [
        "Universal Studios Hollywood",
        "456 Park Ave, New York, NY",
        "40.7128,-74.0060"
      ],
      "description": "The ending point for the directions. This can be a textual address (e.g., '456 Park Ave, New York, NY'), a place name (e.g., 'Universal Studios Hollywood'), or latitude/longitude coordinates (e.g., '40.7128,-74.0060')."
    }
  }
}