Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Boleslaw
New Member

Power Query to access Open Route maps

Hello,

I am looking for help with my POST request in Power Query. I am trying to use matrix service but with no luck so far. I am receiving the following error:
DataSource.Error: Web.Contents failed to get contents from ‘https://api.openrouteservice.org/v2/matrix/driving-car/’ (400): Bad Request

Here is my code:
let
url = “https://api.openrouteservice.org/v2/matrix/driving-car/”,
headers = [#“Content-Type” = “application/json”,#“Accept”= “application/json, application/geo+json, application/gpx+xml, img/png; charset=utf-8”, #“Authorization”= “xxxxxxxxxxxxxxxx”],
postData = Json.FromValue([locations=“[[9.70093,48.477473],[9.207916,49.153868],[37.573242,55.801281],[115.663757,38.106467]]”]),
response = Web.Contents(
url,
[
Headers = headers,
Content = postData
]
),
jsonResponse = Json.Document(response)
in
jsonResponse

I presume the problem is with passing body argument using Json.FromValue

[locations=“[[9.70093,48.477473],[9.207916,49.153868],[37.573242,55.801281],[115.663757,38.106467]]”]

 

I would be greatful for any hint on how to solve this problem.

Thank you!

1 ACCEPTED SOLUTION
ams1
Responsive Resident
Responsive Resident

Hi @Boleslaw 

 

Yeah, in PowerQuery lists use "{" instead of "[":

 

...
postData = Json.FromValue([locations={{9.70093,48.477473},{9.207916,49.153868},{37.573242,55.801281},{115.663757,38.106467}}])
...

 

Please mark this as answer if it helped.

View solution in original post

2 REPLIES 2
Boleslaw
New Member

Great, thank you. This is the solution I was looking for....

ams1
Responsive Resident
Responsive Resident

Hi @Boleslaw 

 

Yeah, in PowerQuery lists use "{" instead of "[":

 

...
postData = Json.FromValue([locations={{9.70093,48.477473},{9.207916,49.153868},{37.573242,55.801281},{115.663757,38.106467}}])
...

 

Please mark this as answer if it helped.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.