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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Tommoo92
New Member

Report Server REST API - Get sheets

Hello!

 

Is it possible to get all sheets that exists in a report from the REST API?

 

BR

Tommie

2 REPLIES 2
Icey
Community Support
Community Support

Hi @Tommoo92 ,

 

I'm afraid it is not supported to get all sheets that exists in a report from the REST API currently.

 

But it is supported to get all Data Sources like so:

let
    Source = OData.Feed("http://localhost/reports/api/v2.0", null, [Implementation="2.0"]),
    PowerBIReports_table = Source{[Name="PowerBIReports",Signature="table"]}[Data],
    #"Removed Other Columns" = Table.SelectColumns(PowerBIReports_table,{"Id", "Name", "Path", "Type", "ModifiedBy", "ModifiedDate", "CreatedBy", "CreatedDate", "DataSources"}),
    #"Expanded DataSources" = Table.ExpandTableColumn(#"Removed Other Columns", "DataSources", {"ConnectionString", "DataModelDataSource"}, {"ConnectionString", "DataModelDataSource"}),
    #"Expanded DataModelDataSource" = Table.ExpandRecordColumn(#"Expanded DataSources", "DataModelDataSource", {"Type", "Kind"}, {"Type.1", "Kind"})
in
    #"Expanded DataModelDataSource"

RS.PNG 

 

Reference: Getting a list of Power BI reports and Data Sources from the Power BI API - SQL Ryan

 

 

Best Regards,

Icey

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Tommoo92
New Member

Note that this is the Report Server API and not PBI Service API

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.