Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hi, I am trying to connect to the an API with a blank query an am struggeling with the syntax
API instructions:
How do I write this query properly in PBI? I have tested mulitple things with different errors
one version I tried, which gives the follwing error which is not very helpful
let
Source = Json.Document(Web.Contents("http://blablabla.px",
[
Headers = [#"Content-Type"="application/json"],
Content=Json.FromValue([query = {}, response = [format = {"px"} ]])
]
))
in
Source
Have tried other methods for the content part (e.g. text.tobinary) but with no good result either. This M syntax is really confusing - please help! thanks and regards
Solved! Go to Solution.
thanks Daryl for your help. After some trial and error I found out that the instructions on the API was stated as ...format = ''px" , but this format (not sure what it is even) was not interpretable. Changeing this to format = ''json'' did the trick..
thanks Daryl for your help. After some trial and error I found out that the instructions on the API was stated as ...format = ''px" , but this format (not sure what it is even) was not interpretable. Changeing this to format = ''json'' did the trick..
Hi @steve1024 - it can sometimes help to split M steps up so that you have more visibility. Here is your original function:
let
header = [#"Content-Type"="application/json"],
body = Json.FromValue([query = {}, response = [format = {"px"} ]]),
Preview = Text.FromBinary( Body , BinaryEncoding.Base64 ),
Source = Web.Contents(
"http://blablabla.px",
[
Headers = header,
Content = body
]
),
Json = Json.Document( Source )
in
Json
This generate the following Preview of the JSON.
If this is formatted:
{
"query":[],
"response": {"format":["px"]}
}
It does not quite match the above. I have removed the {} around px. please test and trouble-shoot this way.
let
header = [#"Content-Type"="application/json"],
body = Json.FromValue([query = {}, response = [format = "px"]]),
Preview = Text.FromBinary( Body , BinaryEncoding.Base64 ),
Source = Web.Contents(
"http://blablabla.px",
[
Headers = header,
Content = body
]
),
Json = Json.Document( Source )
in
Json
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.