# Optimize Bike Courier Routes Chicago

**Use case:** 

Determine the most efficient bicycling routes for local courier services in Chicago, specifically avoiding tolls and major highways. This ensures faster, safer,

## Input

```json
{
  "origin": "Willis Tower, Chicago, IL",
  "destination": "Navy Pier, Chicago, IL",
  "travelMode": "bicycling",
  "language": "en",
  "units": "imperial",
  "avoidTolls": true,
  "avoidHighways": true,
  "avoidFerries": false
}
```

## Output

```json
{
  "origin": {
    "label": "Origin"
  },
  "destination": {
    "label": "Destination"
  },
  "originResolved": {
    "label": "Origin resolved"
  },
  "destinationResolved": {
    "label": "Destination resolved"
  },
  "travelMode": {
    "label": "Travel mode"
  },
  "routeIndex": {
    "label": "Route index"
  },
  "distance": {
    "label": "Distance"
  },
  "distanceMeters": {
    "label": "Distance meters"
  },
  "duration": {
    "label": "Duration"
  },
  "durationSeconds": {
    "label": "Duration seconds"
  },
  "durationInTraffic": {
    "label": "Duration in traffic"
  },
  "via": {
    "label": "Via"
  },
  "trafficCondition": {
    "label": "Traffic condition"
  },
  "googleMapsUrl": {
    "label": "Google maps url"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Maps Directions Scraper](https://apify.com/crawlerbros/google-maps-directions) with a specific input configuration. Visit the [Actor detail page](https://apify.com/crawlerbros/google-maps-directions) to learn more, explore other use cases, and run it yourself.