Search Open menu

Routing API beta 

The Spire Routing API generates origin port to destination port or lat/lng point to port route and ETA predictions for specific vessel types.

 

API Endpoint

https://api.spire.com/graphql

The predictedVesselRoute root query

The Predicted Vessel Route API query is able to provide port to port or point to port routing solution which includes the predicted distance, ETA/duration and route between the two points. It can be called for one vessel at a time.

 

Example query

{
  predictedVesselRoute(
    origin: { unlocode: "USNYC" }
    destination: { unlocode: "IRABD" }
    vessel: { imo: 9215696 }
  ) {
    journey {
      ...
    }
  }
}

Query arguments

In order to get a predictedVesselRoute response, the required parameters are: origin, destination and vessel.

All arguments for the predictedVesselRoute query:

predictedVesselRoute(
  canals: [WaterwayCanal!] = []
  destination: [RouteDestinationInput!]!
  origin: RouteOriginInput!
  piracy: Boolean = false
  speed: Float
  vessel: RouteVesselInput!
): VesselRouteResponse

vessel

Required for obtaining the predictedVesselRoute.

Specify mmsi, imo or both. At least one is required.

predictedVesselRoute(
  vessel: {
    imo: 9215696
  }
  ...
)

origin

The required origin may be specified by either UNLOCODE, or latitude and longitude.

Coordinates example:

predictedVesselRoute(
  origin: {
    coordinates: {
      latitude: 48.2133
      longitude: -123.2343
    }
  }
  ...
)

UNLOCODE example:
When using UNLOCODEs the center point for those ports or locations will be used. The center point will not always correspond to desired location for the specified vessel and it is recommended to use coordinates to specify the specific desired location e.g. a terminal for the vessel.

predictedVesselRoute(
  origin {
    unlocode: "USNYC"
  }
  ...
)

destination

The required destination is specified by a UNLOCODE:

predictedVesselRoute(
  destination: USNYC
  ...
)

speed

Optional average speed in knots which should be used for ETA calculation.

If not specified the speed is determined by known speed for the vessel

predictedVesselRoute(
  speed: 21.6
  ...
)

canals

Specifying this optional parameter will allow the routing algorithm to include the canals chosen in the route calculation. Note that this still depends on the selected vessel whether the canal can be passed or not. For example a vessel too large for the Panama Canal will not be routed through the canal, even if the paramater was set – only plausible routes are returned.

The canal values are enums, and therefore not quoted in the query.

Available canals: KIEL, PANAMA, SUEZ

Example including both PANAMA and SUEZ:

predictedVesselRoute(
  canals: [PANAMA, SUEZ]
  ...
)

piracy

Optionally set to flag to allow the route to go through Piracy Zones.

If true, predictedVesselRoute will include Piracy Zones.

If not set, the default is false.

predictedVesselRoute(
  piracy: true
)

Output

Example query and output specification (note, GraphQL fragments are used below):

query {
  predictedVesselRoute(
    origin: { unlocode: "USNYC" }
    destination: { unlocode: "IRABD" }
    vessel: { imo: 9215696 }
  ) {
    itinerary {
      ...routeDetails
    }
    journey {
      ...routeDetails
    }
  }
}

fragment routeDetails on VesselRoute {
  distance
  duration {
    seconds
    iso
    text
  }
  eta
  seca
  destinationPort {
    ...portDetails
  }
  origin {
    ...portDetails
  }
  waypoints {
    wkt
    geoJson {
      coordinates
      type
    }
  }
}

fragment portDetails on Port {
  name
  unlocode
  centerPoint {
    latitude
    longitude
  }
}

VesselRouteResponse

The response contains two main objects: itinerary and journey

itinerary

This object contains one subobject: VesselRoute

duration
type TimeDuration {
  iso: String!
  seconds: Float!
  text: String!
}
port
type Port {
  centerPoint: GeoPoint
  name: String!
  unlocode: UNLOCODE!
}
centerPoint
type GeoPoint {
  latitude: Float!
  longitude: Float!
}
journey
type VesselRoute {
  destinationPort: Port!
  distance: Float!
  duration: TimeDuration!
  eta: DateTime!
  origin: RouteOrigin!
  seca: Float!
  waypoints: Waypoints!
}
waypoints

Provides waypoints in WKT or GeoJSONLinestring

type Waypoints {
  geoJson: GeoJsonLineString
  wkt: WKT!
}

Examples

Port-to-port route

Request

query route { predictedVesselRoute (
		vessel: {imo: 9321483}
		origin: {
			unlocode: USHOU
		}
		destination: {
			unlocode: GIGIB
		}
)
	{
		journey {
			destinationPort {
				unlocode
				name
			}
			distance
			duration {
				iso
				seconds
			}
			eta
			waypoints {
				geoJson {
					type
					coordinates
				}
			}
		}
	}
}

Response

{
	"data": {
		"predictedVesselRoute": {
			"journey": {
				"destinationPort": {
					"unlocode": "GIGIB",
					"name": "Gibraltar"
				},
				"distance": 4835.47070312,
				"duration": {
					"iso": "P1W1DT21H13M16S",
					"seconds": 767596.0
				},
				"eta": "2024-09-10T13:14:42.658Z",
				"waypoints": {
					"geoJson": {
						"type": "LineString",
						"coordinates": [
							[
								-95.34999847,
								29.75
							],
							[
								-95.28429413,
								29.74427795
							],
							[
								-95.27999115,
								29.73962402
							],
							[
								-95.27453613,
								29.7267437
							],
							[
								-95.26840973,
								29.72416687
							],
							[
								-95.2580719,
								29.72707558
							],
							[
								-95.25299835,
								29.72574615
							],
							[
								-95.24878693,
								29.7214241
							],
							[
								-95.24220276,
								29.71871376
							],
							[
								-95.23806763,
								29.72084236
							],
							[
								-95.2305069,
								29.72483253
							],
							[
								-95.22409821,
								29.72549629
							],
							[
								-95.2173996,
								29.72408485
							],
							[
								-95.20964813,
								29.72732544
							],
							[
								-95.20419312,
								29.73721504
							],
							[
								-95.19012451,
								29.7452755
							],
							[
								-95.16877747,
								29.74710274
							],
							[
								-95.15232086,
								29.73613548
							],
							[
								-95.12992859,
								29.73405647
							],
							[
								-95.11418915,
								29.73926735
							],
							[
								-95.1022644,
								29.74673462
							],
							[
								-95.09387207,
								29.75388145
							],
							[
								-95.08750916,
								29.76268578
							],
							[
								-95.08332825,
								29.76306534
							],
							[
								-95.07913208,
								29.76238251
							],
							[
								-95.07351685,
								29.76075935
							],
							[
								-95.06859589,
								29.75586891
							],
							[
								-95.06436157,
								29.74770737
							],
							[
								-95.05950165,
								29.74073219
							],
							[
								-95.05402374,
								29.7349453
							],
							[
								-95.04442596,
								29.73144722
							],
							[
								-95.03071594,
								29.73023796
							],
							[
								-95.02287292,
								29.72352219
							],
							[
								-95.02089691,
								29.71129799
							],
							[
								-95.01488495,
								29.70357323
							],
							[
								-95.00482941,
								29.70034981
							],
							[
								-94.99530029,
								29.69513321
							],
							[
								-94.98630524,
								29.68792152
							],
							[
								-94.97568512,
								29.66676331
							],
							[
								-94.96344757,
								29.63166046
							],
							[
								-94.94287109,
								29.59500694
							],
							[
								-94.91395569,
								29.55680275
							],
							[
								-94.8974762,
								29.53524971
							],
							[
								-94.89342499,
								29.53034973
							],
							[
								-94.88170624,
								29.51367569
							],
							[
								-94.86231995,
								29.48522377
							],
							[
								-94.83774567,
								29.44368172
							],
							[
								-94.80799866,
								29.38904953
							],
							[
								-94.78756714,
								29.35774612
							],
							[
								-94.77645874,
								29.34977341
							],
							[
								-94.75806427,
								29.34604073
							],
							[
								-94.73238373,
								29.34654999
							],
							[
								-94.69442749,
								29.33541489
							],
							[
								-94.64419556,
								29.31263924
							],
							[
								-94.57816315,
								29.26333237
							],
							[
								-94.49633026,
								29.18749046
							],
							[
								-94.44498444,
								29.14800072
							],
							[
								-94.42412567,
								29.14486122
							],
							[
								-94.39465332,
								29.14304733
							],
							[
								-94.35656738,
								29.14256287
							],
							[
								-94.0442276,
								29.03152847
							],
							[
								-93.45763397,
								28.80994415
							],
							[
								-92.87353516,
								28.58584976
							],
							[
								-92.29193878,
								28.35924911
							],
							[
								-91.71282959,
								28.13020897
							],
							[
								-91.13620758,
								27.89872742
							],
							[
								-90.5620575,
								27.66487312
							],
							[
								-89.99037933,
								27.42864609
							],
							[
								-89.42114258,
								27.19011497
							],
							[
								-88.85435486,
								26.94927597
							],
							[
								-88.28998566,
								26.70619965
							],
							[
								-87.7280426,
								26.460886
							],
							[
								-87.16848755,
								26.21339798
							],
							[
								-86.61133575,
								25.96373558
							],
							[
								-86.05653381,
								25.71196747
							],
							[
								-85.50409698,
								25.45809174
							],
							[
								-84.95398712,
								25.20217514
							],
							[
								-84.40620422,
								24.94421387
							],
							[
								-83.86071014,
								24.68427658
							],
							[
								-83.31750488,
								24.42235947
							],
							[
								-82.69042969,
								24.28140259
							],
							[
								-81.97947693,
								24.26140594
							],
							[
								-81.53794098,
								24.24654579
							],
							[
								-81.36581421,
								24.23682213
							],
							[
								-81.22376251,
								24.23779488
							],
							[
								-81.11178589,
								24.24946594
							],
							[
								-80.99767303,
								24.27842712
							],
							[
								-80.88142395,
								24.32468224
							],
							[
								-80.7307663,
								24.38334846
							],
							[
								-80.5457077,
								24.4544239
							],
							[
								-80.43947601,
								24.50196457
							],
							[
								-80.41209412,
								24.52597046
							],
							[
								-80.38469696,
								24.54996872
							],
							[
								-80.35729218,
								24.57396317
							],
							[
								-80.32987213,
								24.59795189
							],
							[
								-80.30245209,
								24.6219368
							],
							[
								-80.27500916,
								24.64591599
							],
							[
								-80.24756622,
								24.66989136
							],
							[
								-80.2201004,
								24.69386101
							],
							[
								-80.19263458,
								24.71782494
							],
							[
								-80.1651535,
								24.74178505
							],
							[
								-80.13766479,
								24.76573944
							],
							[
								-80.11016083,
								24.78968811
							],
							[
								-80.08264923,
								24.81363297
							],
							[
								-80.05513,
								24.8375721
							],
							[
								-80.02759552,
								24.86150551
							],
							[
								-80.00005341,
								24.8854351
							],
							[
								-79.97249603,
								24.90935898
							],
							[
								-79.94493103,
								24.93327904
							],
							[
								-79.9173584,
								24.95719337
							],
							[
								-79.90023804,
								24.98845482
							],
							[
								-79.89356995,
								25.02706528
							],
							[
								-79.88690186,
								25.06567574
							],
							[
								-79.88022614,
								25.10428429
							],
							[
								-79.87355042,
								25.14289474
							],
							[
								-79.86686707,
								25.1815033
							],
							[
								-79.86018372,
								25.22011185
							],
							[
								-79.85349274,
								25.2587204
							],
							[
								-79.84679413,
								25.29732895
							],
							[
								-79.84009552,
								25.33593559
							],
							[
								-79.83339691,
								25.37454414
							],
							[
								-79.82669067,
								25.41315079
							],
							[
								-79.81997681,
								25.45175743
							],
							[
								-79.81326294,
								25.49036407
							],
							[
								-79.80654144,
								25.52897072
							],
							[
								-79.79981232,
								25.56757736
							],
							[
								-79.79308319,
								25.6061821
							],
							[
								-79.78635406,
								25.64478874
							],
							[
								-79.77960968,
								25.68339348
							],
							[
								-79.77287292,
								25.72199821
							],
							[
								-79.76669312,
								25.74751472
							],
							[
								-79.76109314,
								25.75994301
							],
							[
								-79.75548553,
								25.77237129
							],
							[
								-79.7498703,
								25.78479958
							],
							[
								-79.7442627,
								25.79722786
							],
							[
								-79.73865509,
								25.80965424
							],
							[
								-79.73303986,
								25.82208252
							],
							[
								-79.72742462,
								25.8345089
							],
							[
								-79.72180939,
								25.84693718
							],
							[
								-79.71619415,
								25.85936356
							],
							[
								-79.71057892,
								25.87178993
							],
							[
								-79.70495605,
								25.88421631
							],
							[
								-79.69934082,
								25.89664268
							],
							[
								-79.69371796,
								25.90906906
							],
							[
								-79.68809509,
								25.92149544
							],
							[
								-79.68247223,
								25.93391991
							],
							[
								-79.67684937,
								25.94634628
							],
							[
								-79.6712265,
								25.95877075
							],
							[
								-79.66559601,
								25.97119522
							],
							[
								-79.65996552,
								25.98361969
							],
							[
								-79.65074921,
								26.00000954
							],
							[
								-79.63793945,
								26.02036095
							],
							[
								-79.62512207,
								26.04071236
							],
							[
								-79.61230469,
								26.06106186
							],
							[
								-79.59947968,
								26.08141136
							],
							[
								-79.58664703,
								26.10175896
							],
							[
								-79.57381439,
								26.12210655
							],
							[
								-79.56098175,
								26.14245224
							],
							[
								-79.54813385,
								26.16279602
							],
							[
								-79.53529358,
								26.1831398
							],
							[
								-79.52243805,
								26.20348167
							],
							[
								-79.50958252,
								26.22382164
							],
							[
								-79.49672699,
								26.24416161
							],
							[
								-79.4838562,
								26.26450157
							],
							[
								-79.47099304,
								26.28483963
							],
							[
								-79.45811462,
								26.30517578
							],
							[
								-79.44523621,
								26.32551003
							],
							[
								-79.43235779,
								26.34584427
							],
							[
								-79.41947174,
								26.36617851
							],
							[
								-79.40657806,
								26.38650894
							],
							[
								-79.39202118,
								26.53338242
							],
							[
								-79.37580872,
								26.80679321
							],
							[
								-79.33659363,
								26.96429062
							],
							[
								-79.27439117,
								27.00586891
							],
							[
								-79.21213531,
								27.04742241
							],
							[
								-79.14984131,
								27.0889473
							],
							[
								-79.0874939,
								27.13044357
							],
							[
								-79.02510071,
								27.17191505
							],
							[
								-78.96266937,
								27.21335602
							],
							[
								-78.90018463,
								27.25477219
							],
							[
								-78.83765411,
								27.29615784
							],
							[
								-78.77507782,
								27.33751678
							],
							[
								-78.71245575,
								27.37884903
							],
							[
								-78.64978027,
								27.42015076
							],
							[
								-78.58706665,
								27.46142769
							],
							[
								-78.52429962,
								27.5026741
							],
							[
								-78.46148682,
								27.54389191
							],
							[
								-78.39862823,
								27.58508301
							],
							[
								-78.33572388,
								27.6262455
							],
							[
								-78.27277374,
								27.66737938
							],
							[
								-78.2097702,
								27.70848465
							],
							[
								-78.14672089,
								27.74956131
							],
							[
								-77.78105927,
								27.85878754
							],
							[
								-77.11278534,
								28.03616333
							],
							[
								-76.44232941,
								28.21027756
							],
							[
								-75.7696991,
								28.38113022
							],
							[
								-75.09492493,
								28.54865265
							],
							[
								-74.41801453,
								28.71284485
							],
							[
								-73.73900604,
								28.87364197
							],
							[
								-73.0579071,
								29.03104019
							],
							[
								-72.37476349,
								29.18497849
							],
							[
								-71.6895752,
								29.33545303
							],
							[
								-71.00239563,
								29.4824028
							],
							[
								-70.31324005,
								29.62582588
							],
							[
								-69.62215424,
								29.76566315
							],
							[
								-68.92913818,
								29.90191269
							],
							[
								-68.23427582,
								30.03451347
							],
							[
								-67.53755951,
								30.16346931
							],
							[
								-66.83905792,
								30.28872108
							],
							[
								-66.13878632,
								30.41026878
							],
							[
								-65.43680573,
								30.5280571
							],
							[
								-64.73313904,
								30.64208603
							],
							[
								-63.50909042,
								30.95346451
							],
							[
								-61.76467133,
								31.46219254
							],
							[
								-60.0018425,
								31.9466629
							],
							[
								-58.22059631,
								32.40687561
							],
							[
								-56.42188644,
								32.84143829
							],
							[
								-54.60570908,
								33.25035477
							],
							[
								-52.77340317,
								33.63231277
							],
							[
								-50.9249649,
								33.98731232
							],
							[
								-49.0621109,
								34.31416321
							],
							[
								-47.18484116,
								34.61286163
							],
							[
								-45.29524612,
								34.88236618
							],
							[
								-43.39331818,
								35.12266541
							],
							[
								-41.48148727,
								35.33289337
							],
							[
								-39.5597496,
								35.51304626
							],
							[
								-37.6308136,
								35.66244507
							],
							[
								-35.69468307,
								35.78109741
							],
							[
								-33.75427246,
								35.86854553
							],
							[
								-31.80959129,
								35.92478561
							],
							[
								-29.86368752,
								35.94960403
							],
							[
								-27.91656303,
								35.94300079
							],
							[
								-26.49452782,
								35.96956253
							],
							[
								-25.59758186,
								36.02929306
							],
							[
								-24.69942665,
								36.08231735
							],
							[
								-23.80006027,
								36.12864685
							],
							[
								-22.899786,
								36.16823578
							],
							[
								-21.99860191,
								36.20108414
							],
							[
								-21.09681702,
								36.22716904
							],
							[
								-20.1944313,
								36.24648285
							],
							[
								-19.29175568,
								36.25901794
							],
							[
								-18.38879204,
								36.26477051
							],
							[
								-17.48584938,
								36.26373291
							],
							[
								-16.58293343,
								36.25591278
							],
							[
								-15.68035316,
								36.2413063
							],
							[
								-14.7781105,
								36.21992111
							],
							[
								-13.87651634,
								36.19177246
							],
							[
								-12.97557163,
								36.15686417
							],
							[
								-12.0755806,
								36.11521912
							],
							[
								-11.1765461,
								36.06684113
							],
							[
								-10.27876663,
								36.01176834
							],
							[
								-9.38224316,
								35.95000458
							],
							[
								-8.86782265,
								35.91919708
							],
							[
								-8.73550701,
								35.91935349
							],
							[
								-8.60319042,
								35.91936111
							],
							[
								-8.47087479,
								35.9192276
							],
							[
								-8.33855915,
								35.91894531
							],
							[
								-8.20624542,
								35.91852188
							],
							[
								-8.07393265,
								35.91794968
							],
							[
								-7.94162273,
								35.91723251
							],
							[
								-7.8093152,
								35.91637039
							],
							[
								-7.67701054,
								35.91536713
							],
							[
								-7.54470968,
								35.91421509
							],
							[
								-7.41241264,
								35.91291809
							],
							[
								-7.28012085,
								35.91147614
							],
							[
								-7.14783335,
								35.90988922
							],
							[
								-7.01555204,
								35.90815735
							],
							[
								-6.88327646,
								35.9062767
							],
							[
								-6.75100756,
								35.90425491
							],
							[
								-6.61874533,
								35.90208817
							],
							[
								-6.48649073,
								35.89977646
							],
							[
								-6.35424423,
								35.89731979
							],
							[
								-6.26710224,
								35.89454269
							],
							[
								-6.20404768,
								35.88989639
							],
							[
								-6.09002352,
								35.89061356
							],
							[
								-5.98552704,
								35.89269638
							],
							[
								-5.89934778,
								35.89616013
							],
							[
								-5.74530792,
								35.90447998
							],
							[
								-5.61437416,
								35.91279602
							],
							[
								-5.52406883,
								35.93823242
							],
							[
								-5.47962666,
								35.95058823
							],
							[
								-5.46546507,
								35.96124268
							],
							[
								-5.43692732,
								36.00327682
							],
							[
								-5.42588234,
								36.01697159
							],
							[
								-5.41068459,
								36.04703522
							],
							[
								-5.40390015,
								36.06458664
							],
							[
								-5.40046263,
								36.07965088
							],
							[
								-5.40254307,
								36.10099411
							],
							[
								-5.41014194,
								36.12861633
							],
							[
								-5.40179634,
								36.14267349
							],
							[
								-5.37750721,
								36.1431694
							],
							[
								-5.36406946,
								36.14177704
							],
							[
								-5.36018991,
								36.13685989
							]
						]
					}
				}
			}
		}
	},
	"extensions": {
		"requestId": "f27ddf14-92bb-4dd7-8b58-ff04c6187ab0",
		"requestQuota": {
			"limit": "60 req/m (burst 60)",
			"remaining": 59
		}
	}
}
 

Visualization of the response’s returned route

Point-to-port route

Request

query route { predictedVesselRoute (
		vessel: {imo: 9335173}
		origin: {
			coordinates: {
				latitude: 46.320789077700056,
				longitude: -7.835153291959443
          
			}
		}
		destination: {
			unlocode: ESVLC
		}
)
	{
		journey {
			destinationPort {
				unlocode
				name
			}
			distance
			duration {
				iso
				seconds
			}
			eta
			waypoints {
				geoJson {
					type
					coordinates
				}
			}
		}
	}
}

Response

{
	"data": {
		"predictedVesselRoute": {
			"journey": {
				"destinationPort": {
					"unlocode": "ESVLC",
					"name": "Valencia"
				},
				"distance": 1229.38659668,
				"duration": {
					"iso": "P2DT6H12M36S",
					"seconds": 195156.0
				},
				"eta": "2024-09-03T22:45:32.385Z",
				"waypoints": {
					"geoJson": {
						"type": "LineString",
						"coordinates": [
							[
								-7.8351531,
								46.32078934
							],
							[
								-7.83940601,
								46.31542587
							],
							[
								-7.84224129,
								46.3118515
							],
							[
								-7.84507608,
								46.30827713
							],
							[
								-7.8479104,
								46.30470276
							],
							[
								-7.85074425,
								46.30112839
							],
							[
								-7.85357809,
								46.2975502
							],
							[
								-7.85641098,
								46.29397583
							],
							[
								-7.85924387,
								46.29040146
							],
							[
								-7.86207676,
								46.28682709
							],
							[
								-7.8649087,
								46.28325272
							],
							[
								-7.86774063,
								46.27967453
							],
							[
								-7.87057209,
								46.27610016
							],
							[
								-7.87340307,
								46.27252579
							],
							[
								-7.87623358,
								46.2689476
							],
							[
								-7.87906361,
								46.26537323
							],
							[
								-7.88189363,
								46.26179886
							],
							[
								-7.88472319,
								46.25822067
							],
							[
								-7.88755226,
								46.2546463
							],
							[
								-7.89038134,
								46.25106812
							],
							[
								-8.00163174,
								46.10016251
							],
							[
								-8.22130394,
								45.80192566
							],
							[
								-8.46172905,
								45.47556686
							],
							[
								-8.72290611,
								45.12108612
							],
							[
								-8.91143131,
								44.86401749
							],
							[
								-9.02730465,
								44.70436478
							],
							[
								-9.3035202,
								44.3380661
							],
							[
								-9.95835686,
								43.47865677
							],
							[
								-10.10504532,
								43.28720093
							],
							[
								-10.09897804,
								42.84843826
							],
							[
								-10.0988884,
								42.70223999
							],
							[
								-10.09581947,
								42.31926346
							],
							[
								-10.08974171,
								41.65077209
							],
							[
								-10.08592033,
								41.17495728
							],
							[
								-10.08435631,
								40.891819
							],
							[
								-10.08283043,
								40.69639587
							],
							[
								-10.0813446,
								40.58867645
							],
							[
								-10.08590984,
								40.12192535
							],
							[
								-10.09652519,
								39.29614639
							],
							[
								-10.10328007,
								38.83771515
							],
							[
								-10.10762024,
								38.70109558
							],
							[
								-10.0736227,
								38.61130905
							],
							[
								-10.03072453,
								38.47822189
							],
							[
								-9.96759319,
								38.27190781
							],
							[
								-9.87642097,
								37.95086288
							],
							[
								-9.75720692,
								37.51508713
							],
							[
								-9.68312454,
								37.22861099
							],
							[
								-9.65417385,
								37.09143448
							],
							[
								-9.61998081,
								36.96518707
							],
							[
								-9.56082821,
								36.79220963
							],
							[
								-9.30619144,
								36.56811523
							],
							[
								-9.098876,
								36.51742554
							],
							[
								-9.02451324,
								36.49840546
							],
							[
								-8.94299316,
								36.48474503
							],
							[
								-8.82952976,
								36.4701004
							],
							[
								-8.24912357,
								36.34750748
							],
							[
								-7.2017746,
								36.11697006
							],
							[
								-6.6599617,
								35.99583435
							],
							[
								-6.62368488,
								35.98410797
							],
							[
								-6.58801556,
								35.97396851
							],
							[
								-6.5529542,
								35.96542358
							],
							[
								-6.473598,
								35.94488525
							],
							[
								-6.3499465,
								35.91235352
							],
							[
								-6.26710224,
								35.89454269
							],
							[
								-6.20404768,
								35.88989639
							],
							[
								-6.09002352,
								35.89061356
							],
							[
								-5.98552704,
								35.89269638
							],
							[
								-5.89934778,
								35.89616013
							],
							[
								-5.74530792,
								35.90447998
							],
							[
								-5.61437416,
								35.91279602
							],
							[
								-5.52406883,
								35.93823242
							],
							[
								-5.47962666,
								35.95058823
							],
							[
								-5.34943962,
								35.98271942
							],
							[
								-5.18425131,
								36.00588989
							],
							[
								-5.02401304,
								36.02272797
							],
							[
								-4.6734972,
								36.06472397
							],
							[
								-4.07929087,
								36.13749313
							],
							[
								-3.74752784,
								36.17892075
							],
							[
								-3.67820764,
								36.18901825
							],
							[
								-3.5551672,
								36.20393753
							],
							[
								-3.37840652,
								36.22367096
							],
							[
								-3.11632752,
								36.25448608
							],
							[
								-2.76893044,
								36.29637146
							],
							[
								-2.51432681,
								36.32731628
							],
							[
								-2.27161169,
								36.35731888
							],
							[
								-2.19274473,
								36.36476517
							],
							[
								-2.15925813,
								36.37665939
							],
							[
								-2.12720132,
								36.39676666
							],
							[
								-2.08541203,
								36.42906189
							],
							[
								-1.85963809,
								36.5897522
							],
							[
								-1.44987929,
								36.87883759
							],
							[
								-1.07073247,
								37.14843369
							],
							[
								-0.72219789,
								37.3985405
							],
							[
								-0.53424495,
								37.53679276
							],
							[
								-0.50687373,
								37.56319427
							],
							[
								-0.44315237,
								37.63454437
							],
							[
								-0.34308094,
								37.75084686
							],
							[
								-0.26740891,
								37.83784866
							],
							[
								-0.21613631,
								37.89554977
							],
							[
								-0.13539898,
								37.99068832
							],
							[
								-0.02519695,
								38.12326813
							],
							[
								0.0798896,
								38.24782181
							],
							[
								0.17986067,
								38.36435699
							],
							[
								0.26341677,
								38.4605217
							],
							[
								0.33055788,
								38.53631973
							],
							[
								0.37516877,
								38.58845139
							],
							[
								0.40828979,
								38.63114929
							],
							[
								0.45965579,
								38.69708252
							],
							[
								0.53736359,
								38.79260635
							],
							[
								0.54272401,
								38.82831192
							],
							[
								0.5016396,
								38.83604431
							],
							[
								0.47713727,
								38.84857559
							],
							[
								0.46921712,
								38.86590576
							],
							[
								0.46129307,
								38.88323593
							],
							[
								0.45336518,
								38.9005661
							],
							[
								0.44543344,
								38.91789627
							],
							[
								0.43749779,
								38.93522644
							],
							[
								0.42955828,
								38.9525528
							],
							[
								0.42161486,
								38.96988297
							],
							[
								0.41366756,
								38.98720932
							],
							[
								0.40571639,
								39.00453568
							],
							[
								0.39776132,
								39.02186203
							],
							[
								0.38980234,
								39.03918839
							],
							[
								0.38183945,
								39.05651474
							],
							[
								0.37387267,
								39.07384109
							],
							[
								0.36590195,
								39.09116364
							],
							[
								0.35792735,
								39.10848618
							],
							[
								0.34994879,
								39.12580872
							],
							[
								0.34196633,
								39.14313507
							],
							[
								0.33397993,
								39.1604538
							],
							[
								0.3259896,
								39.17777634
							],
							[
								0.25387165,
								39.21117783
							],
							[
								0.11762606,
								39.26065445
							],
							[
								0.03272985,
								39.31025314
							],
							[
								-0.00081699,
								39.35998154
							],
							[
								-0.08260502,
								39.39297867
							],
							[
								-0.21263422,
								39.40925217
							],
							[
								-0.28593823,
								39.4222641
							],
							[
								-0.30251706,
								39.43201828
							],
							[
								-0.31158936,
								39.43857956
							],
							[
								-0.31315523,
								39.44195175
							],
							[
								-0.31462035,
								39.44522858
							],
							[
								-0.31666699,
								39.45000076
							]
						]
					}
				}
			}
		}
	},
	"extensions": {
		"requestId": "dbd8acdc-2368-4134-8272-b6de39e0f37e",
		"requestQuota": {
			"limit": "60 req/m (burst 60)",
			"remaining": 59
		}
	}
}
 

Visualization of the response’s returned route