Calculate toll fees for a route

When you are computing a route or a route matrix, you might want to take into consideration any toll fees on the route. For select cities, you can compute the estimated toll fee for a route in the appropriate currency.

To get tolls for a route matrix, see Calculate tolls fees for a route matrix.

For the list of supported toll locations, see the reference for TollPass.

How tolls are calculated

The Routes API calculates the estimated toll fee, taking into consideration any toll price discounts or passes available to the driver or vehicle, and the most convenient payment methods. If there is no available toll price for a given route, the Routes API indicates the existence of a toll with an unknown fee.

To get accurate toll estimates, make sure you include the following information in your request:

  • The emission type of the vehicle used for the route (VehicleEmissionType). If no emission type is provided, the toll for a gasoline-fueled vehicle is returned.
  • All toll passes the vehicle and driver have using (TollPass). The API uses the toll passes to determine accurate toll fees, and returns cash prices when toll passes in the request are not local to the route.
  • Specify avoid tolls, if needed. If you want to avoid toll roads where possible, add avoidTolls as a RouteModifier.

Calculate tolls using a toll pass

To calculate tolls using a toll pass, you specify any toll passes as part of the request. The API then returns pass prices.

  • If you specify an invalid toll pass, the pass is ignored.

  • If specify multiple toll passes as an array, the API attempts to calculate the price for the route for each pass.

The way toll passes behave can vary by region.

  • Rates may be lower with a toll pass: In some regions, a driver or vehicle with a toll pass pays a different toll than those who don't have a pass. For example, if you have a Good To Go! toll pass in Seattle, WA, US, you pay a lower toll than if you don't have a pass.

  • Some roads may require a toll pass: Some regions, such as Indonesia, have roads that require a toll pass. If you don't specify a toll pass for a route where a toll pass is required, the API does not return a toll price.

Calculate toll fees for a route

The following example uses the computeRoutes method to return toll information with an estimated price when a toll pass is used. In this example, you:

  • Set the extraComputations array field to TOLLS to enable the calculation of toll information.

  • Specify the vehicle type and the toll pass type by using the routeModifiers field of the request. The toll price returned is based on the pricing used by the specified vehicle type and pass. If more than one pass is specified, the least expensive pricing is returned.

  • Use the response field mask to configure the method to return toll information in the response. In this example, the request included the following properties in the response field mask:

    • routes.travelAdvisory.tollInfo field to return information for the entire route.

    • routes.legs.travelAdvisory.tollInfo to return information for each leg.

Request for toll information

curl -X POST -d '{
  "origin":{
    "location":{
      "latLng":{
        "latitude":42.340173523716736,
        "longitude":-71.05997968330408
      }
    }
  },
  "destination":{
    "location":{
      "latLng":{
        "latitude":42.075698891472804,
        "longitude": -72.59806562080408
      }
    }
  },
  "travelMode": "DRIVE",
  "extraComputations": ["TOLLS"],
  "routeModifiers":{
    "vehicleInfo":{
      "emissionType": "GASOLINE"
    },
    "tollPasses": [
      "US_MA_EZPASSMA",
      "US_WA_GOOD_TO_GO"
    ]
  }
}' \
-H 'Content-Type: application/json' \
-H 'X-Goog-Api-Key: YOUR_API_KEY' \
-H 'X-Goog-FieldMask: routes.duration,routes.distanceMeters,routes.travelAdvisory.tollInfo,routes.legs.travelAdvisory.tollInfo' \
'https://routes.googleapis.com/directions/v2:computeRoutes'

Response containing toll information

The response contains information on tolls in a TollInfo (REST) or TollInfo (gRPC) object. In this example, you return toll information for the entire route and for each leg of the route.

{
  "routes": [
    {
      "legs": [
        {
          "travelAdvisory": {
            "tollInfo": {
              "estimatedPrice": [
                {
                  "currencyCode": "USD",
                  "units": "4",
                  "nanos": 400000000
                }
              ]
            }
          }
        }
      ],
      "distanceMeters": 150338,
      "duration": "6650s",
      "travelAdvisory": {
        "tollInfo": {
          "estimatedPrice": [
            {
              "currencyCode": "USD",
              "units": "4",
              "nanos": 400000000
            }
          ]
        }
      }
    }
  ]
}