Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello everyone
I am creating a Power BI report with data from http requests e.g.
https://api.openaq.org/v1/cities
From my report I would like to be able to control Query Params so I e.g. can choose city.
https://api.openaq.org/v1/cities?city=007
I can set the parameter city=007 in M query but I have not been able to do this param variable.
M query:
let
cities_url = "https://api.openaq.org/v1/cities", //Web Url
request_limit = "10000", //number represented by a string
request_city = "007",
Source = Json.Document(Web.Contents(cities_url, [Query = [city = request_city,limit = request_limit]])),
results = Source[results],
results1 = results{0}
in
results1
Is it possible to make a report with variable query params?
Let me know if any further information is necessary
Thanks
Solved! Go to Solution.
Hi @LangeJan ,
Yes,you could create query parameter to change the city_id dynamically. You can refer the following documentations to achieve it.
Change the Source of Power BI Datasets Dynamically Using Power Query Parameters
Dynamic Web.Contents() and Power BI Refresh Errors
Web.Contents with dynamic file URL
Wish it is helpful for you!
Best Regard
Lucien Wang
Hi @LangeJan ,
Yes,you could create query parameter to change the city_id dynamically. You can refer the following documentations to achieve it.
Change the Source of Power BI Datasets Dynamically Using Power Query Parameters
Dynamic Web.Contents() and Power BI Refresh Errors
Web.Contents with dynamic file URL
Wish it is helpful for you!
Best Regard
Lucien Wang
@mahoneypat
Thanks for your reply.
it's a great video that gives good inspiration to move on.
I can see from the video that I can control the parameters by predefining variables in a column and including these in the Http call.
I want the user of the report to be able to enter a keyword as a parameter in the report and get the result in the report with this parameter. Do you think that is possible?
Yes. You can concatenate parameters and/or column values into your web calls. Please see if this video helps.
Power BI - Tales From The Front - REST APIs - YouTube
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
57 | |
38 | |
36 |
User | Count |
---|---|
83 | |
67 | |
62 | |
46 | |
45 |