User story
The user is looking for the fastest way from the central station in Wiesbaden, Germany, to the central station in Mainz, Germany, passing through the central stations in Frankfurt, Darmstadt, Hanau and the airport in Frankfurt. The user is interested in traffic information and wants to find a time-optimized route.
Request
curl -H "Authorization: Bearer TOKEN_HERE" "https://wps.hereapi.com/v8/findsequence2?start=WiesbadenCentralStation;50.0715,8.2434&destination1=FranfurtCentralStation;50.1073,8.6647&destination2=DarmstadtCentralStation;49.8728,8.6326&destination3=FrankfurtAirport;50.0505,8.5698&destination4=HanauCentralStation;50.1218,8.9298&end=MainzCentralStation;50.0021,8.259&improveFor=time&departure=2014-12-09T09:30:00%2b01:00&mode=fastest;car;traffic:enabled"
curl "https://wps.hereapi.com/v8/findsequence2?start=WiesbadenCentralStation;50.0715,8.2434&destination1=FranfurtCentralStation;50.1073,8.6647&destination2=DarmstadtCentralStation;49.8728,8.6326&destination3=FrankfurtAirport;50.0505,8.5698&destination4=HanauCentralStation;50.1218,8.9298&end=MainzCentralStation;50.0021,8.259&improveFor=time&departure=2014-12-09T09:30:00%2b01:00&mode=fastest;car;traffic:enabled&apikey=APIKEY_HERE"
Response
{
"results": [{
"waypoints": [{
"id": "WiesbadenCentralStation",
"lat": 50.0715,
"lng": 8.2434,
"sequence": 0,
"estimatedArrival": null,
"estimatedDeparture": "2014-12-09T09:30:00+01:00",
"fulfilledConstraints": []
},
{
"id": "FranfurtCentralStation",
"lat": 50.1073,
"lng": 8.6647,
"sequence": 1,
"estimatedArrival": null,
"estimatedDeparture": "2014-12-09T10:01:02+01:00",
"fulfilledConstraints": []
},
{
"id": "HanauCentralStation",
"lat": 50.1218,
"lng": 8.9298,
"sequence": 2,
"estimatedArrival": null,
"estimatedDeparture": "2014-12-09T10:30:43+01:00",
"fulfilledConstraints": []
},
{
"id": "FrankfurtAirport",
"lat": 50.0505,
"lng": 8.5698,
"sequence": 3,
"estimatedArrival": null,
"estimatedDeparture": "2014-12-09T10:56:10+01:00",
"fulfilledConstraints": []
},
{
"id": "DarmstadtCentralStation",
"lat": 49.8728,
"lng": 8.6326,
"sequence": 4,
"estimatedArrival": null,
"estimatedDeparture": "2014-12-09T11:16:55+01:00",
"fulfilledConstraints": []
},
{
"id": "MainzCentralStation",
"lat": 50.0021,
"lng": 8.259,
"sequence": 5,
"estimatedArrival": null,
"estimatedDeparture": null,
"fulfilledConstraints": []
}],
"distance": "169262",
"time": "8362",
"interconnections": [{
"fromWaypoint": "WiesbadenCentralStation",
"toWaypoint": "FranfurtCentralStation",
"distance": 36461.0,
"time": 1862.0
},
{
"fromWaypoint": "FranfurtCentralStation",
"toWaypoint": "HanauCentralStation",
"distance": 34485.0,
"time": 1781.0
},
{
"fromWaypoint": "HanauCentralStation",
"toWaypoint": "FrankfurtAirport",
"distance": 33489.0,
"time": 1527.0
},
{
"fromWaypoint": "FrankfurtAirport",
"toWaypoint": "DarmstadtCentralStation",
"distance": 26905.0,
"time": 1245.0
},
{
"fromWaypoint": "DarmstadtCentralStation",
"toWaypoint": "MainzCentralStation",
"distance": 37922.0,
"time": 1947.0
}],
"description": "Targeted best time; with improvement for traffic"
}],
"processingTimeDesc": "1345ms",
"responseCode": "200",
"warnings": null,
"requestId": null
}