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
kirvis
Helper I
Helper I

Parse API key from sheet in Powerquery headers

Hello all,

 

I am querying a REST API in Get & Transform (FKA PowerQuery) in Excel 2016, and I want to parse the API key from a Parameter sheet in Excel.

 

If I hardcode the API key in the query as part of the headers, all works fine, but if I import it from the sheet and try to use the imported value in the query, I get an authentication failure.

 

This works:

 

let
Source = Json.Document(Web.Contents("https://app.url.io/api/", [Headers=[Authorization="Basic APIKEY"]]))
in
Source

 

This also works:

 

let
API_key = "APIKEY",
Source = Json.Document(Web.Contents("app.url.io/api/", [Headers=[Authorization="Basic "&API_key]]))
in
Source

 

And this does not work:

 

let
//API key from parameter table
API = Excel.CurrentWorkbook(){[Name="API_key"]}[Content],
API_key = API{0}[Column1],
//
Source = Json.Document(Web.Contents("https://app.url.io/api/", [Headers=[Authorization="Basic "&API_key]]))
in
Source

 

Any ideas on what is going on here?

 

1 ACCEPTED SOLUTION

Hi Angelia,

 

Thanks for your message.

 

After doing some additional digging, I was able to find a different and better solution: I am now not parsing the API key in a sheet and importing it as a parameter into Power Query, but I am using the credentials dialog with Basic authentication.

 

Advantage is that the API is now neither stored in a sheet, nor in the quer, which makes it a whole lot safer.

 

Thanks!

 

Bas

View solution in original post

3 REPLIES 3
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @kirvis,

I am not specific about Power BI developer. After research, hope the following threads and article are useful.

Power BI embedded POSTMAN Rest API HTTP Request - help

Calling REST APIs and Parsing JSON made simple with Power BI 
Specifying JSON Query in Power Query – Example Statistics Sweden

You'd better post your case to dedicated forum to get professional support.

Best Regards,
Angelia

Hi Angelia,

 

Thanks for your message.

 

After doing some additional digging, I was able to find a different and better solution: I am now not parsing the API key in a sheet and importing it as a parameter into Power Query, but I am using the credentials dialog with Basic authentication.

 

Advantage is that the API is now neither stored in a sheet, nor in the quer, which makes it a whole lot safer.

 

Thanks!

 

Bas

Hi @kirvis,

Congratulations, you have found the solution by yourself. Please mark your workaround as answer, so more people will benefit from here.

Best Regards,
Angelia

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.