Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
gooduling
Frequent Visitor

How to get data from 3rd party REST API in PowerBI?

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

cc @v-qiuyu-msft, @Eric_Zhang

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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
    Result

Regards,

Xiaoxin Sheng

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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
    Result

Regards,

Xiaoxin Sheng

gooduling
Frequent Visitor

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

 

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.