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! Learn more
Hi, I'm pretty new in Power BI, so I feel I have a mess in my head after all read Documents.
So what I need is a dashboard with Query fields and visualisation, where the user would be able to request data say from example.com/api/items endpoint and then visualise it somehow.
Where should I write my connector to this 3rd party API ? In Power Query connectors? In Power Apps connectors? In Power BI stream datasets? 🤯
Please, help me to get it
Solved! Go to Solution.
 
					
				
		
Hi @gooduling,
I think you can choose a web connector to handle the rest API.
Solved: Pull data from a REST API Authentication - Microsoft Power BI Community
Sample formula:
let
    token = "",
    Result =
        Web.Contents(
            "https://xxxxx.xxx.com",
            [
                Headers = [
                    #"Content-Type" = "application/json",
                    Authorization = "Bearer " + token,
                    RelativePath = "/api/items"
                ]
            ]
        )
in
    ResultRegards,
Xiaoxin Sheng
 
					
				
		
Hi @gooduling,
I think you can choose a web connector to handle the rest API.
Solved: Pull data from a REST API Authentication - Microsoft Power BI Community
Sample formula:
let
    token = "",
    Result =
        Web.Contents(
            "https://xxxxx.xxx.com",
            [
                Headers = [
                    #"Content-Type" = "application/json",
                    Authorization = "Bearer " + token,
                    RelativePath = "/api/items"
                ]
            ]
        )
in
    ResultRegards,
Xiaoxin Sheng
Ok, I think I know the answer: Power Query Data Conectors
https://www.youtube.com/watch?v=srQ-DLqhoxM
https://github.com/Microsoft/DataConnectors
Let me know if I'm wrong please
 
					
				
				
			
		
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.
 
            | User | Count | 
|---|---|
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |