Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register 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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
42 | |
30 | |
27 | |
27 |