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 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?
Solved! Go to 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
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
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 | |
68 | |
53 | |
39 | |
33 |
User | Count |
---|---|
70 | |
63 | |
57 | |
49 | |
46 |