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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

How to connect Powerbi source with an API Odata content?

Hello! 
I´m trying to connect with an API data in Power BI.
I´m following these specific steps:

1. New Source -> Blank Query
2. Advanced Editor
3. 

let

     Source = OData.Feed("URL", null, [Headers=[#"xxxxxx" = "TOKEN"]])
in
     Source




It worked very well and I was able to connect with this source. See the image:

phmacena_2-1631552759750.png


But when I try to select any data table, appears this error message:

phmacena_4-1631552813468.png

 

Does someone know how to solve this problem? The message says "Token not found". But i´m including the token in the previous request... 😞 



1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

Would it be that the token you used has expired? If you return to the first Source step and click Refresh Preview, will the Source step still get all data with the same token?

 

If the token is valid, try modifying the URL to navigate to the table directly. You can add a table name at the end of the url like "odataserviceurl/tablename".

 

Based on my test, the two queries below give me the same result of "Categories" table. 

let
    Source = OData.Feed("https://services.odata.org/V3/Northwind/Northwind.svc/", null, [Implementation="2.0"]),
    Categories_table = Source{[Name="Categories",Signature="table"]}[Data]
in
    Categories_table
let
    Source = OData.Feed("https://services.odata.org/V3/Northwind/Northwind.svc/Categories", null, [Implementation="2.0"])
in
    Source

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

Would it be that the token you used has expired? If you return to the first Source step and click Refresh Preview, will the Source step still get all data with the same token?

 

If the token is valid, try modifying the URL to navigate to the table directly. You can add a table name at the end of the url like "odataserviceurl/tablename".

 

Based on my test, the two queries below give me the same result of "Categories" table. 

let
    Source = OData.Feed("https://services.odata.org/V3/Northwind/Northwind.svc/", null, [Implementation="2.0"]),
    Categories_table = Source{[Name="Categories",Signature="table"]}[Data]
in
    Categories_table
let
    Source = OData.Feed("https://services.odata.org/V3/Northwind/Northwind.svc/Categories", null, [Implementation="2.0"])
in
    Source

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Anonymous
Not applicable

Yes, the Token was valid when I refreshed the first step

It worked perfectly the way you suggested. Thank you very much 😄

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.