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

Join 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.

Reply
LangeJan
Helper I
Helper I

HTTP variable query params

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

1 ACCEPTED SOLUTION
v-luwang-msft
Community Support
Community Support

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

View solution in original post

3 REPLIES 3
v-luwang-msft
Community Support
Community Support

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

LangeJan
Helper I
Helper I

@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?

mahoneypat
Microsoft Employee
Microsoft Employee

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





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.