Skip to content

Directions API

Time Constraints

Version 2.1 of the Optimized Route endpoint supports adding time constraints to your locations to help you create a route that ensures you can meet appointments and arrive at locations within business hours.

This page contains supplemental information pertaining only to using constraints with v2.1 of the Optimized Route endpoint. See the Optimized Route POST documentation for full information on available request parameters and response fields.

Contact us if you would like to use this feature.

Resource URL

POST https://www.mapquestapi.com/directions/v2.1/optimizedroute

Body Parameters

Please refer to the normal Route documentation for the full list of acceptable body parameters.

Locations

To use constraints, all locations must in advanced format and have a constraints field (apart from the first and last location).

Constraints
ParameterDescriptionRequired
appointmentAn appointment can be defined in two formats. Both use date strings (in ISO 8601 format). The first format is a single date string defining a specific appointment time - e.g. 2024-12-03T17:22:48.603Z. The second format is an object with a nested start and end date string. This defines an appointment window or general access hours for a location - e.g. { "start": "2024-12-03T12:00:00.000Z", "end": "2024-12-03T17:00:00.000Z" }No
visitDurationInSecondsHow long should be spent at the location in seconds.Yes
(when using constraints)

Options

The following options are both required when using constraints.

ParameterDescriptionRequired
datedeparture date/time in ISO 8601 format. This is the date and time the route should start.Yes
(when using constraints)
timeTypemust have a value 2 (Start At) See the timeType documentation for more information.Yes
(when using constraints)

Note: All ISO 8601 format date strings are assumed to be in UTC if no time zone is supplied. Returned dates are all in UTC.

Please refer to the normal Route documentation for the full list of acceptable Advanced Parameters

Response

Route Response Fields

Refer to the V1 Optimized Route Response Fields for a full list of available fields. The following route response fields are only those available when using constraints in v2.1 of this route.

Location

When using constraints the following fields are available under each location in the route response.

Location FieldDescription
arrivalTimeThe arrival time at the location (never included in first location)
departureTimeThe departure time at the location (never included in last location)
fulfilledConstraintsThe constraints used to derive the arrival and departure times

See the Status Codes page for more details on our status codes and error messages.

Example Request

Note

The following example request shows four locations that would normally be visited in order, but the addition of constraints changes the route so that the second and third location are swapped.

POST https://www.mapquestapi.com/directions/v2.1/optimizedroute?key=KEY

Example Request Body

JSON
{
  "locations": [
    {
      "street": "Santa Monica Pier"
    },
    {
      "street": "Venice Beach Skatepark",
      "constraints": {
        "visitDurationInSeconds": 300,
        "appointment": "2024-12-29T15:00:00Z"
      }
    },
    {
      "city": "Venice, LA",
      "constraints": {
        "visitDurationInSeconds": 120,
        "appointment": {
          "start": "2024-12-29T10:00:00Z",
          "end": "2024-12-29T16:00:00Z"
        }
      }
    },
    {
      "city": "Mar Vista, LA"
    }
  ],
  "options": {
    "timeType": 2,
    "date": "2024-12-29T09:40:00Z"
  }
}
XML
<route>
  <locations>
    <location>
      <street>Santa Monica Pier</street>
    </location>
    <location>
      <street>Venice Beach Skatepark</street>
      <constraints>
        <visitDurationInSeconds>300</visitDurationInSeconds>
        <appointment>2024-12-29T15:00:00Z</appointment>
      </constraints>
    </location>
    <location>
      <street>Venice, LA</street>
      <constraints>
        <visitDurationInSeconds>120</visitDurationInSeconds>
        <appointment>
          <start>2024-12-29T10:00:00Z</start>
          <end>2024-12-29T16:00:00Z</end>
        </appointment>
      </constraints>
    </location>
    <location>
      <city>Mar Vista, LA</city>
    </location>
  </locations>
  <options>
    <timeType>2</timeType>
    <date>2024-12-29T09:40:00Z</date>
  </options>
</route>

Example Response

JSON
{
  "route": {
    "sessionId": "ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car",
    "realTime": 1237,
    "distance": 5.3743,
    "time": 897,
    "formattedTime": "00:14:57",
    "hasHighway": false,
    "hasTollRoad": false,
    "hasBridge": false,
    "hasSeasonalClosure": false,
    "hasTunnel": false,
    "hasFerry": false,
    "hasUnpaved": false,
    "hasTimedRestriction": true,
    "hasCountryCross": false,
    "legs": [
      {
        "index": 0,
        "hasTollRoad": false,
        "hasHighway": false,
        "hasBridge": false,
        "hasUnpaved": false,
        "hasTunnel": false,
        "hasSeasonalClosure": false,
        "hasFerry": false,
        "hasCountryCross": false,
        "hasTimedRestriction": true,
        "distance": 2.1866,
        "time": 461,
        "formattedTime": "00:07:41",
        "origIndex": 0,
        "origNarrative": "",
        "destIndex": 0,
        "destNarrative": "",
        "maneuvers": [
          {
            "index": 0,
            "distance": 0.0789,
            "narrative": "Head toward Ocean Ave on Santa Monica Pier. Go for 417 ft.",
            "time": 65,
            "direction": 3,
            "directionName": "Northeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:01:05",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.010598,
              "lng": -118.495888
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Santa Monica Pier"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.010598,-118.495888|marker-1||34.0114,-118.49490999999999|marker-2||&center=34.010999,-118.49539899999999&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 1,
            "distance": 0.3772,
            "narrative": "Turn right onto Ocean Ave. Go for 0.4 mi.",
            "time": 79,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:01:19",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.0114,
              "lng": -118.49490999999999
            },
            "turnType": 2,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Ocean Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.0114,-118.49490999999999|marker-2||34.00749999999999,-118.49032999999997|marker-3||&center=34.00945,-118.49261999999999&defaultMarker=none&zoom=14&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 2,
            "distance": 0.9203,
            "narrative": "Continue on Neilson Way. Go for 0.9 mi.",
            "time": 159,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:02:39",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.00749999999999,
              "lng": -118.49032999999997
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Neilson Way"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.00749999999999,-118.49032999999997|marker-3||33.997330000000005,-118.47992000000002|marker-4||&center=34.002415,-118.485125&defaultMarker=none&zoom=13&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 3,
            "distance": 0.8103,
            "narrative": "Continue on Pacific Ave. Go for 0.8 mi.",
            "time": 158,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:02:38",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.997330000000005,
              "lng": -118.47992000000002
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Pacific Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.997330000000005,-118.47992000000002|marker-4||33.987539000000005,-118.47215100000004|marker-5||&center=33.9924345,-118.47603550000002&defaultMarker=none&zoom=13&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 4,
            "distance": 0,
            "narrative": "Arrive at Pacific Ave.",
            "time": 0,
            "direction": 0,
            "directionName": "None",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:00",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.987539000000005,
              "lng": -118.47215100000004
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": []
          }
        ]
      },
      {
        "index": 1,
        "hasTollRoad": false,
        "hasHighway": false,
        "hasBridge": false,
        "hasUnpaved": false,
        "hasTunnel": false,
        "hasSeasonalClosure": false,
        "hasFerry": false,
        "hasCountryCross": false,
        "hasTimedRestriction": false,
        "distance": 0.1504,
        "time": 44,
        "formattedTime": "00:00:44",
        "origIndex": 0,
        "origNarrative": "",
        "destIndex": 0,
        "destNarrative": "",
        "maneuvers": [
          {
            "index": 5,
            "distance": 0.0516,
            "narrative": "Head toward Windward Ct on Pacific Ave. Go for 272 ft.",
            "time": 11,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:11",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.987539,
              "lng": -118.472151
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Pacific Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.987539,-118.472151|marker-6||33.986929999999994,-118.47164000000001|marker-7||&center=33.9872345,-118.4718955&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 6,
            "distance": 0.0758,
            "narrative": "Turn right onto 17th Pl. Go for 400 ft.",
            "time": 26,
            "direction": 6,
            "directionName": "Southwest",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:26",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.986929999999994,
              "lng": -118.47164000000001
            },
            "turnType": 2,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "17th Pl"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986929999999994,-118.47164000000001|marker-7||33.98626999999999,-118.4727|marker-8||&center=33.986599999999996,-118.47217&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 7,
            "distance": 0.023,
            "narrative": "Turn left onto Speedway. Go for 121 ft.",
            "time": 7,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:07",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.98626999999999,
              "lng": -118.4727
            },
            "turnType": 6,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Speedway"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.98626999999999,-118.4727|marker-8||33.98599999999999,-118.47247|marker-9||&center=33.98613499999999,-118.47258500000001&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 8,
            "distance": 0,
            "narrative": "Arrive at Speedway. Your destination is on the right.",
            "time": 0,
            "direction": 0,
            "directionName": "None",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:00",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.98599999999999,
              "lng": -118.47247
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": []
          }
        ]
      },
      {
        "index": 2,
        "hasTollRoad": false,
        "hasHighway": false,
        "hasBridge": false,
        "hasUnpaved": false,
        "hasTunnel": false,
        "hasSeasonalClosure": false,
        "hasFerry": false,
        "hasCountryCross": false,
        "hasTimedRestriction": false,
        "distance": 3.0373,
        "time": 732,
        "formattedTime": "00:12:12",
        "origIndex": 0,
        "origNarrative": "",
        "destIndex": 0,
        "destNarrative": "",
        "maneuvers": [
          {
            "index": 9,
            "distance": 0,
            "narrative": "Head southeast on Speedway.",
            "time": 10,
            "direction": 1,
            "directionName": "North",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:10",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.986,
              "lng": -118.47247
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Speedway"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986,-118.47247|marker-10||33.986,-118.47247|marker-11||&center=33.986,-118.47247&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 10,
            "distance": 0.0771,
            "narrative": "Turn left onto 18th Ave. Go for 407 ft.",
            "time": 24,
            "direction": 3,
            "directionName": "Northeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:24",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.986,
              "lng": -118.47247
            },
            "turnType": 6,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "18th Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986,-118.47247|marker-11||33.986639999999994,-118.47137000000001|marker-12||&center=33.98631999999999,-118.47192000000001&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 11,
            "distance": 0.1771,
            "narrative": "Turn right onto Pacific Ave. Go for 0.2 mi.",
            "time": 41,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:41",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.986639999999994,
              "lng": -118.47137000000001
            },
            "turnType": 2,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Pacific Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986639999999994,-118.47137000000001|marker-12||33.9845,-118.46967|marker-13||&center=33.985569999999996,-118.47052&defaultMarker=none&zoom=15&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 12,
            "distance": 2.6172,
            "narrative": "Turn left onto S Venice Blvd. Go for 2.6 mi.",
            "time": 603,
            "direction": 3,
            "directionName": "Northeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:10:03",
            "transportMode": "car",
            "startPoint": {
              "lat": 33.9845,
              "lng": -118.46967
            },
            "turnType": 6,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "S Venice Blvd",
              "Venice Blvd"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.9845,-118.46967|marker-13||34.00483,-118.43124000000003|marker-14||&center=33.994665,-118.450455&defaultMarker=none&zoom=11&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 13,
            "distance": 0.0727,
            "narrative": "Turn right onto Grand View Blvd. Go for 384 ft.",
            "time": 34,
            "direction": 5,
            "directionName": "Southeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:34",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.00483,
              "lng": -118.43124000000003
            },
            "turnType": 2,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Grand View Blvd"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.00483,-118.43124000000003|marker-14||34.00397,-118.43051000000004|marker-15||&center=34.004400000000004,-118.43087500000004&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 14,
            "distance": 0.0932,
            "narrative": "Turn left onto Pacific Ave. Go for 492 ft.",
            "time": 20,
            "direction": 3,
            "directionName": "Northeast",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:20",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.00397,
              "lng": -118.43051000000004
            },
            "turnType": 6,
            "attributes": 0,
            "iconUrl": "",
            "streets": [
              "Pacific Ave"
            ],
            "mapUrl": "https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.00397,-118.43051000000004|marker-15||34.004684,-118.42913300000005|marker-16||&center=34.004327,-118.42982150000005&defaultMarker=none&zoom=16&session=ANkA_v___wkAAQCBAQAAeNpjaGRkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOLI2DOwvwXSDmIMDA98FBiUuLgYWFU8NFYe8HFkYWJkYhRg4ApgAABKwVxLx13VgQ:car"
          },
          {
            "index": 15,
            "distance": 0,
            "narrative": "Arrive at Pacific Ave.",
            "time": 0,
            "direction": 0,
            "directionName": "None",
            "signs": [],
            "maneuverNotes": [],
            "formattedTime": "00:00:00",
            "transportMode": "car",
            "startPoint": {
              "lat": 34.004684,
              "lng": -118.42913300000005
            },
            "turnType": 0,
            "attributes": 0,
            "iconUrl": "",
            "streets": []
          }
        ]
      }
    ],
    "options": {
      "timeType": 2,
      "date": "2024-12-29T09:40:00Z",
      "routeType": "FASTEST",
      "narrativeType": "text",
      "enhancedNarrative": false,
      "walkingSpeed": -1,
      "highwayEfficiency": 22,
      "avoids": false,
      "generalize": -1,
      "shapeFormat": "raw",
      "unit": "M",
      "locale": "en_US",
      "useTraffic": false,
      "dateType": 0,
      "doReverseGeocode": true,
      "manMaps": true,
      "tollCost": false,
      "sideOfStreetDisplay": true
    },
    "boundingBox": {
      "ul": {
        "lat": 34.0114,
        "lng": -118.495888
      },
      "lr": {
        "lat": 33.9845,
        "lng": -118.42913300000005
      }
    },
    "routeWarnings": [],
    "name": "Venice Blvd and Pacific Ave",
    "locations": [
      {
        "street": "Santa Monica Pier",
        "adminArea6": "City of Santa Monica",
        "adminArea6Type": "Neighborhood",
        "adminArea5": "Santa Monica",
        "adminArea5Type": "City",
        "adminArea4": "Los Angeles",
        "adminArea4Type": "County",
        "adminArea3": "CA",
        "adminArea3Type": "State",
        "adminArea1": "US",
        "adminArea1Type": "Country",
        "postalCode": "90401",
        "geocodeQualityCode": "B1AAA",
        "geocodeQuality": "STREET",
        "dragPoint": false,
        "sideOfStreet": "N",
        "linkId": "0",
        "unknownInput": "",
        "type": "s",
        "latLng": {
          "lat": 34.0106,
          "lng": -118.49589
        },
        "displayLatLng": {
          "lat": 34.0106,
          "lng": -118.49589
        },
        "mapUrl": "",
        "departureTime": "2024-12-29T09:40:00Z"
      },
      {
        "street": "",
        "adminArea6": "",
        "adminArea6Type": "Neighborhood",
        "adminArea5": "Venice",
        "adminArea5Type": "City",
        "adminArea4": "Los Angeles",
        "adminArea4Type": "County",
        "adminArea3": "CA",
        "adminArea3Type": "State",
        "adminArea1": "US",
        "adminArea1Type": "Country",
        "postalCode": "",
        "geocodeQualityCode": "A5XBX",
        "geocodeQuality": "CITY",
        "dragPoint": false,
        "sideOfStreet": "N",
        "linkId": "0",
        "unknownInput": "",
        "type": "s",
        "latLng": {
          "lat": 33.98754,
          "lng": -118.47215
        },
        "displayLatLng": {
          "lat": 33.98754,
          "lng": -118.47215
        },
        "mapUrl": "",
        "arrivalTime": "2024-12-29T09:46:18Z",
        "departureTime": "2024-12-29T10:02:00Z",
        "fulfilledConstraints": {
          "visitDurationInSeconds": 120,
          "appointment": {
            "start": "2024-12-29T10:00:00Z",
            "end": "2024-12-29T16:00:00Z"
          }
        }
      },
      {
        "street": "1800 Ocean Front Walk",
        "adminArea6": "Venice",
        "adminArea6Type": "Neighborhood",
        "adminArea5": "Venice",
        "adminArea5Type": "City",
        "adminArea4": "Los Angeles",
        "adminArea4Type": "County",
        "adminArea3": "CA",
        "adminArea3Type": "State",
        "adminArea1": "US",
        "adminArea1Type": "Country",
        "postalCode": "90291",
        "geocodeQualityCode": "P1AAA",
        "geocodeQuality": "POINT",
        "dragPoint": false,
        "sideOfStreet": "L",
        "linkId": "0",
        "unknownInput": "",
        "type": "s",
        "latLng": {
          "lat": 33.98575,
          "lng": -118.47271
        },
        "displayLatLng": {
          "lat": 33.98716,
          "lng": -118.47564
        },
        "mapUrl": "",
        "arrivalTime": "2024-12-29T10:02:42Z",
        "departureTime": "2024-12-29T15:05:00Z",
        "fulfilledConstraints": {
          "visitDurationInSeconds": 300,
          "appointment": "2024-12-29T15:00:00Z"
        }
      },
      {
        "street": "",
        "adminArea6": "Mar Vista",
        "adminArea6Type": "Neighborhood",
        "adminArea5": "Los Angeles",
        "adminArea5Type": "City",
        "adminArea4": "Los Angeles",
        "adminArea4Type": "County",
        "adminArea3": "CA",
        "adminArea3Type": "State",
        "adminArea1": "US",
        "adminArea1Type": "Country",
        "postalCode": "90405",
        "geocodeQualityCode": "A6XBX",
        "geocodeQuality": "NEIGHBORHOOD",
        "dragPoint": false,
        "sideOfStreet": "N",
        "linkId": "0",
        "unknownInput": "",
        "type": "s",
        "latLng": {
          "lat": 34.00468,
          "lng": -118.42913
        },
        "displayLatLng": {
          "lat": 34.00468,
          "lng": -118.42913
        },
        "mapUrl": "",
        "arrivalTime": "2024-12-29T15:12:47Z"
      }
    ],
    "locationSequence": [
      0,
      2,
      1,
      3
    ]
  },
  "info": {
    "statuscode": 0,
    "copyright": {
      "text": "© 2025 MapQuest, Inc.",
      "imageUrl": "http://api.mqcdn.com/res/mqlogo.gif",
      "imageAltText": "© 2025 MapQuest, Inc."
    },
    "messages": []
  }
}
XML
<?xml version="1.0" encoding="UTF-8"?>
<response>
  <route>
    <sessionId>AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car</sessionId>
    <realTime>1226</realTime>
    <distance>5.7179</distance>
    <time>981</time>
    <formattedTime>00:16:21</formattedTime>
    <hasHighway>false</hasHighway>
    <hasTollRoad>false</hasTollRoad>
    <hasBridge>false</hasBridge>
    <hasSeasonalClosure>false</hasSeasonalClosure>
    <hasTunnel>false</hasTunnel>
    <hasFerry>false</hasFerry>
    <hasUnpaved>false</hasUnpaved>
    <hasTimedRestriction>true</hasTimedRestriction>
    <hasCountryCross>false</hasCountryCross>
    <legs>
      <leg>
        <index>0</index>
        <hasTollRoad>false</hasTollRoad>
        <hasHighway>false</hasHighway>
        <hasBridge>false</hasBridge>
        <hasUnpaved>false</hasUnpaved>
        <hasTunnel>false</hasTunnel>
        <hasSeasonalClosure>false</hasSeasonalClosure>
        <hasFerry>false</hasFerry>
        <hasCountryCross>false</hasCountryCross>
        <hasTimedRestriction>true</hasTimedRestriction>
        <distance>2.1866</distance>
        <time>484</time>
        <formattedTime>00:08:04</formattedTime>
        <maneuvers>
          <maneuver>
            <index>0</index>
            <distance>0.0789</distance>
            <narrative>Head toward Ocean Ave on Santa Monica Pier. Go for 417 ft.</narrative>
            <time>65</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:05</formattedTime>
            <startPoint>
              <lat>34.010598</lat>
              <lng>-118.495888</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Santa Monica Pier</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.010598,-118.495888|marker-1||34.0114,-118.49490999999999|marker-2||&center=34.010999,-118.49539899999999&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>1</index>
            <distance>0.3772</distance>
            <narrative>Turn right onto Ocean Ave. Go for 0.4 mi.</narrative>
            <time>73</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:13</formattedTime>
            <startPoint>
              <lat>34.0114</lat>
              <lng>-118.49490999999999</lng>
            </startPoint>
            <turnType>2</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Ocean Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.0114,-118.49490999999999|marker-2||34.00749999999999,-118.49032999999997|marker-3||&center=34.00945,-118.49261999999999&defaultMarker=none&zoom=14&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>2</index>
            <distance>0.9203</distance>
            <narrative>Continue on Neilson Way. Go for 0.9 mi.</narrative>
            <time>189</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:03:09</formattedTime>
            <startPoint>
              <lat>34.00749999999999</lat>
              <lng>-118.49032999999997</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Neilson Way</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.00749999999999,-118.49032999999997|marker-3||33.997330000000005,-118.47992000000002|marker-4||&center=34.002415,-118.485125&defaultMarker=none&zoom=13&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>3</index>
            <distance>0.8103</distance>
            <narrative>Continue on Pacific Ave. Go for 0.8 mi.</narrative>
            <time>157</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:02:37</formattedTime>
            <startPoint>
              <lat>33.997330000000005</lat>
              <lng>-118.47992000000002</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Pacific Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.997330000000005,-118.47992000000002|marker-4||33.987539000000005,-118.47215100000004|marker-5||&center=33.9924345,-118.47603550000002&defaultMarker=none&zoom=13&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>4</index>
            <distance>0</distance>
            <narrative>Arrive at Pacific Ave.</narrative>
            <time>0</time>
            <direction>0</direction>
            <directionName>None</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:00</formattedTime>
            <startPoint/>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets/>
            <mapUrl><![CDATA[]]></mapUrl>
          </maneuver>
        </maneuvers>
      </leg>
      <leg>
        <index>1</index>
        <hasTollRoad>false</hasTollRoad>
        <hasHighway>false</hasHighway>
        <hasBridge>false</hasBridge>
        <hasUnpaved>false</hasUnpaved>
        <hasTunnel>false</hasTunnel>
        <hasSeasonalClosure>false</hasSeasonalClosure>
        <hasFerry>false</hasFerry>
        <hasCountryCross>false</hasCountryCross>
        <hasTimedRestriction>false</hasTimedRestriction>
        <distance>0.1504</distance>
        <time>44</time>
        <formattedTime>00:00:44</formattedTime>
        <maneuvers>
          <maneuver>
            <index>5</index>
            <distance>0.0516</distance>
            <narrative>Head toward Windward Ct on Pacific Ave. Go for 272 ft.</narrative>
            <time>11</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:11</formattedTime>
            <startPoint>
              <lat>33.987539</lat>
              <lng>-118.472151</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Pacific Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.987539,-118.472151|marker-6||33.986929999999994,-118.47164000000001|marker-7||&center=33.9872345,-118.4718955&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>6</index>
            <distance>0.0758</distance>
            <narrative>Turn right onto 17th Pl. Go for 400 ft.</narrative>
            <time>26</time>
            <direction>6</direction>
            <directionName>Southwest</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:26</formattedTime>
            <startPoint>
              <lat>33.986929999999994</lat>
              <lng>-118.47164000000001</lng>
            </startPoint>
            <turnType>2</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>17th Pl</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986929999999994,-118.47164000000001|marker-7||33.98626999999999,-118.4727|marker-8||&center=33.986599999999996,-118.47217&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>7</index>
            <distance>0.023</distance>
            <narrative>Turn left onto Speedway. Go for 121 ft.</narrative>
            <time>7</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:07</formattedTime>
            <startPoint>
              <lat>33.98626999999999</lat>
              <lng>-118.4727</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Speedway</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.98626999999999,-118.4727|marker-8||33.98599999999999,-118.47247|marker-9||&center=33.98613499999999,-118.47258500000001&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>8</index>
            <distance>0</distance>
            <narrative>Arrive at Speedway. Your destination is on the right.</narrative>
            <time>0</time>
            <direction>0</direction>
            <directionName>None</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:00</formattedTime>
            <startPoint/>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets/>
            <mapUrl><![CDATA[]]></mapUrl>
          </maneuver>
        </maneuvers>
      </leg>
      <leg>
        <index>2</index>
        <hasTollRoad>false</hasTollRoad>
        <hasHighway>false</hasHighway>
        <hasBridge>false</hasBridge>
        <hasUnpaved>false</hasUnpaved>
        <hasTunnel>false</hasTunnel>
        <hasSeasonalClosure>false</hasSeasonalClosure>
        <hasFerry>false</hasFerry>
        <hasCountryCross>false</hasCountryCross>
        <hasTimedRestriction>false</hasTimedRestriction>
        <distance>3.3809</distance>
        <time>698</time>
        <formattedTime>00:11:38</formattedTime>
        <maneuvers>
          <maneuver>
            <index>9</index>
            <distance>0</distance>
            <narrative>Head southeast on Speedway.</narrative>
            <time>10</time>
            <direction>1</direction>
            <directionName>North</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:10</formattedTime>
            <startPoint>
              <lat>33.986</lat>
              <lng>-118.47247</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Speedway</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986,-118.47247|marker-10||33.986,-118.47247|marker-11||&center=33.986,-118.47247&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>10</index>
            <distance>0.0771</distance>
            <narrative>Turn left onto 18th Ave. Go for 407 ft.</narrative>
            <time>24</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:24</formattedTime>
            <startPoint>
              <lat>33.986</lat>
              <lng>-118.47247</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>18th Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986,-118.47247|marker-11||33.986639999999994,-118.47137000000001|marker-12||&center=33.98631999999999,-118.47192000000001&defaultMarker=none&zoom=16&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>11</index>
            <distance>0.1771</distance>
            <narrative>Turn right onto Pacific Ave. Go for 0.2 mi.</narrative>
            <time>41</time>
            <direction>5</direction>
            <directionName>Southeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:41</formattedTime>
            <startPoint>
              <lat>33.986639999999994</lat>
              <lng>-118.47137000000001</lng>
            </startPoint>
            <turnType>2</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Pacific Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.986639999999994,-118.47137000000001|marker-12||33.9845,-118.46967|marker-13||&center=33.985569999999996,-118.47052&defaultMarker=none&zoom=15&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>12</index>
            <distance>0.5201</distance>
            <narrative>Turn left onto S Venice Blvd. Go for 0.5 mi.</narrative>
            <time>106</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:46</formattedTime>
            <startPoint>
              <lat>33.9845</lat>
              <lng>-118.46967</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>S Venice Blvd</street>
              <street>Venice Blvd</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.9845,-118.46967|marker-13||33.989049999999985,-118.46244000000002|marker-14||&center=33.986774999999994,-118.46605500000001&defaultMarker=none&zoom=13&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>13</index>
            <distance>0.6158</distance>
            <narrative>Turn right onto Abbot Kinney Blvd. Go for 0.6 mi.</narrative>
            <time>95</time>
            <direction>8</direction>
            <directionName>East</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:35</formattedTime>
            <startPoint>
              <lat>33.989049999999985</lat>
              <lng>-118.46244000000002</lng>
            </startPoint>
            <turnType>2</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Abbot Kinney Blvd</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.989049999999985,-118.46244000000002|marker-14||33.988240000000005,-118.45212999999998|marker-15||&center=33.98864499999999,-118.457285&defaultMarker=none&zoom=13&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>14</index>
            <distance>0.2902</distance>
            <narrative>Turn left onto Washington Blvd. Go for 0.3 mi.</narrative>
            <time>89</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:29</formattedTime>
            <startPoint>
              <lat>33.988240000000005</lat>
              <lng>-118.45212999999998</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Washington Blvd</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.988240000000005,-118.45212999999998|marker-15||33.99047000000001,-118.44785000000002|marker-16||&center=33.989355,-118.44999&defaultMarker=none&zoom=14&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>15</index>
            <distance>0.8227</distance>
            <narrative>Continue on Washington Blvd. Go for 0.8 mi.</narrative>
            <time>152</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:02:32</formattedTime>
            <startPoint>
              <lat>33.99047000000001</lat>
              <lng>-118.44785000000002</lng>
            </startPoint>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Washington Blvd</street>
              <street>W Washington Blvd</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.99047000000001,-118.44785000000002|marker-16||33.996579999999994,-118.43549000000002|marker-17||&center=33.993525000000005,-118.44167000000002&defaultMarker=none&zoom=13&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>16</index>
            <distance>0.3567</distance>
            <narrative>Turn left onto Washington Pl. Go for 0.4 mi.</narrative>
            <time>66</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:06</formattedTime>
            <startPoint>
              <lat>33.996579999999994</lat>
              <lng>-118.43549000000002</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Washington Pl</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.996579999999994,-118.43549000000002|marker-17||33.99941999999999,-118.43032000000001|marker-18||&center=33.99799999999999,-118.432905&defaultMarker=none&zoom=14&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>17</index>
            <distance>0.2703</distance>
            <narrative>Turn left onto S Centinela Ave. Go for 0.3 mi.</narrative>
            <time>62</time>
            <direction>2</direction>
            <directionName>Northwest</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:01:02</formattedTime>
            <startPoint>
              <lat>33.99941999999999</lat>
              <lng>-118.43032000000001</lng>
            </startPoint>
            <turnType>6</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>S Centinela Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=33.99941999999999,-118.43032000000001|marker-18||34.00273,-118.43283000000002|marker-19||&center=34.001075,-118.43157500000001&defaultMarker=none&zoom=14&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>18</index>
            <distance>0.251</distance>
            <narrative>Turn right onto Pacific Ave. Go for 0.3 mi.</narrative>
            <time>53</time>
            <direction>3</direction>
            <directionName>Northeast</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:53</formattedTime>
            <startPoint>
              <lat>34.00273</lat>
              <lng>-118.43283000000002</lng>
            </startPoint>
            <turnType>2</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets>
              <street>Pacific Ave</street>
            </streets>
            <mapUrl><![CDATA[https://www.mapquestapi.com/staticmap/v5/map?key=undefined&size=225,160&locations=34.00273,-118.43283000000002|marker-19||34.004684,-118.42913300000004|marker-20||&center=34.003707,-118.43098150000003&defaultMarker=none&zoom=14&session=AN8A_v___wkAAQCIAQAAeNpj6GBkYGFgYGDPSC1KtUrO3bRjmzSQyxD4J8KDg4eBwbV6j_b1Av0IGB0JpI8AaQYsAGbGFLspkiB-zSX1WiagGYvPHtDWstOOgNFTgbQykMZnhk1PhiRMDGRG1-YD2vtfaUXA6J37DminftPCa8ZchRoJEP_s8Qc1DEAzmhed0P4UoxcBo5OAtGysHtF-AdEwtzNicygIwBzGCOJw5m66owRkOYgxMDzwUWBQ4uJiYFXx0FjZwMMqyKHCAVTSwSCgwOnR4MDEAAD9d14KKLImtw:car]]></mapUrl>
          </maneuver>
          <maneuver>
            <index>19</index>
            <distance>0</distance>
            <narrative>Arrive at Pacific Ave.</narrative>
            <time>0</time>
            <direction>0</direction>
            <directionName>None</directionName>
            <signs/>
            <maneuverNotes/>
            <formattedTime>00:00:00</formattedTime>
            <startPoint/>
            <turnType>0</turnType>
            <attributes>0</attributes>
            <iconUrl><![CDATA[]]></iconUrl>
            <streets/>
            <mapUrl><![CDATA[]]></mapUrl>
          </maneuver>
        </maneuvers>
      </leg>
    </legs>
    <options>
      <timeType>2</timeType>
      <date>2024-12-29T09:40:00Z</date>
      <routeType>FASTEST</routeType>
      <narrativeType>text</narrativeType>
      <enhancedNarrative>false</enhancedNarrative>
      <highwayEfficiency>22</highwayEfficiency>
      <avoids>false</avoids>
      <fullShape/>
      <generalize>-1</generalize>
      <shapeFormat>raw</shapeFormat>
      <unit>M</unit>
      <conditionsAheadDistance/>
      <locale>en_US</locale>
      <useTraffic>false</useTraffic>
      <isoLocal/>
      <localTime/>
      <dateType>0</dateType>
      <manMaps>true</manMaps>
      <tollCost>false</tollCost>
      <sideOfStreetDisplay>true</sideOfStreetDisplay>
    </options>
    <boundingBox>
      <ul>
        <lat>34.0114</lat>
        <lng>-118.495888</lng>
      </ul>
      <lr>
        <lat>33.9845</lat>
        <lng>-118.42913300000004</lng>
      </lr>
    </boundingBox>
    <routeWarnings/>
    <name>Pacific Ave and Neilson Way</name>
    <locations>
      <location>
        <adminArea6 type="Neighborhood">City of Santa Monica</adminArea6>
        <adminArea5 type="City">Santa Monica</adminArea5>
        <adminArea4 type="County">Los Angeles</adminArea4>
        <adminArea3 type="State">CA</adminArea3>
        <adminArea1 type="Country">US</adminArea1>
        <street>Santa Monica Pier</street>
        <postalCode>90401</postalCode>
        <geocodeQualityCode>B1AAA</geocodeQualityCode>
        <geocodeQuality>STREET</geocodeQuality>
        <dragPoint>false</dragPoint>
        <sideOfStreet>N</sideOfStreet>
        <linkId>0</linkId>
        <unknownInput/>
        <type>s</type>
        <latLng>
          <lat>34.0106</lat>
          <lng>-118.49589</lng>
        </latLng>
        <displayLatLng>
          <latLng>
            <lat>34.0106</lat>
            <lng>-118.49589</lng>
          </latLng>
        </displayLatLng>
        <mapUrl><![CDATA[]]></mapUrl>
        <arrivalTime/>
        <departureTime>2024-12-29T09:40:00Z</departureTime>
        <fulfilledConstraints/>
      </location>
      <location>
        <adminArea6 type="Neighborhood"/>
        <adminArea5 type="City">Venice</adminArea5>
        <adminArea4 type="County">Los Angeles</adminArea4>
        <adminArea3 type="State">CA</adminArea3>
        <adminArea1 type="Country">US</adminArea1>
        <street/>
        <postalCode/>
        <geocodeQualityCode>A5XBX</geocodeQualityCode>
        <geocodeQuality>CITY</geocodeQuality>
        <dragPoint>false</dragPoint>
        <sideOfStreet>N</sideOfStreet>
        <linkId>0</linkId>
        <unknownInput/>
        <type>s</type>
        <latLng>
          <lat>33.98754</lat>
          <lng>-118.47215</lng>
        </latLng>
        <displayLatLng>
          <latLng>
            <lat>33.98754</lat>
            <lng>-118.47215</lng>
          </latLng>
        </displayLatLng>
        <mapUrl><![CDATA[]]></mapUrl>
        <arrivalTime>2024-12-29T09:46:18Z</arrivalTime>
        <departureTime>2024-12-29T10:02:00Z</departureTime>
        <fulfilledConstraints>
          <visitDurationInSeconds>120</visitDurationInSeconds>
          <appointment>
            <start>2024-12-29T10:00:00Z</start>
            <end>2024-12-29T16:00:00Z</end>
          </appointment>
        </fulfilledConstraints>
      </location>
      <location>
        <adminArea6 type="Neighborhood">Venice</adminArea6>
        <adminArea5 type="City">Venice</adminArea5>
        <adminArea4 type="County">Los Angeles</adminArea4>
        <adminArea3 type="State">CA</adminArea3>
        <adminArea1 type="Country">US</adminArea1>
        <street>1800 Ocean Front Walk</street>
        <postalCode>90291</postalCode>
        <geocodeQualityCode>P1AAA</geocodeQualityCode>
        <geocodeQuality>POINT</geocodeQuality>
        <dragPoint>false</dragPoint>
        <sideOfStreet>L</sideOfStreet>
        <linkId>0</linkId>
        <unknownInput/>
        <type>s</type>
        <latLng>
          <lat>33.98575</lat>
          <lng>-118.47271</lng>
        </latLng>
        <displayLatLng>
          <latLng>
            <lat>33.98716</lat>
            <lng>-118.47564</lng>
          </latLng>
        </displayLatLng>
        <mapUrl><![CDATA[]]></mapUrl>
        <arrivalTime>2024-12-29T10:02:42Z</arrivalTime>
        <departureTime>2024-12-29T15:05:00Z</departureTime>
        <fulfilledConstraints>
          <visitDurationInSeconds>300</visitDurationInSeconds>
          <appointment>2024-12-29T15:00:00Z</appointment>
        </fulfilledConstraints>
      </location>
      <location>
        <adminArea6 type="Neighborhood">Mar Vista</adminArea6>
        <adminArea5 type="City">Los Angeles</adminArea5>
        <adminArea4 type="County">Los Angeles</adminArea4>
        <adminArea3 type="State">CA</adminArea3>
        <adminArea1 type="Country">US</adminArea1>
        <street/>
        <postalCode>90405</postalCode>
        <geocodeQualityCode>A6XBX</geocodeQualityCode>
        <geocodeQuality>NEIGHBORHOOD</geocodeQuality>
        <dragPoint>false</dragPoint>
        <sideOfStreet>N</sideOfStreet>
        <linkId>0</linkId>
        <unknownInput/>
        <type>s</type>
        <latLng>
          <lat>34.00468</lat>
          <lng>-118.42913</lng>
        </latLng>
        <displayLatLng>
          <latLng>
            <lat>34.00468</lat>
            <lng>-118.42913</lng>
          </latLng>
        </displayLatLng>
        <mapUrl><![CDATA[]]></mapUrl>
        <arrivalTime>2024-12-29T15:12:47Z</arrivalTime>
        <departureTime/>
        <fulfilledConstraints/>
      </location>
    </locations>
    <locationSequence>0,2,1,3</locationSequence>
  </route>
  <info>
    <statusCode>0</statusCode>
    <copyright>
      <text>© 2025 MapQuest, Inc.</text>
      <imageUrl>http://api.mqcdn.com/res/mqlogo.gif</imageUrl>
      <imageAltText>© 2025 MapQuest, Inc.</imageAltText>
    </copyright>
    <messages/>
  </info>
  <routeError/>
</response>