Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello guys,
I have an API endpoint from a website and I was also sent an API access token.
I can't find the right way to make the connection with my Power BI Desktop.
How should I procceed?
Thanks in advance,
Anna
Hi @amerianou,
Did these suggestions help with your scenario? if that is the case, you can consider Kudo or accept the helpful suggestions to help others who faced similar requirements to find it more quickly.
If these also don't help, please share more detailed information to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
hi @amerianou,
You can use a web connector with the rest API URL and correspond tokens to get data.
Sample:
let
rooturl = "https://xxxxx.xxxx.com/",
token = "xxxxxxx",
relativeURL = "xxxxx/xxxxx",
Result =
Web.Contents(
rooturl,
[
Headers = [
#"Content-Type" = "application/json",
Authorization = "Bearer " + token,
RelativePath = "/api/xxxx/xxxxx"
],
RelativePath = relativeURL
]
)
in
Result
Regards,
Xiaoxin Sheng
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.