Join 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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello!
Is it possible to get all sheets that exists in a report from the REST API?
BR
Tommie
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"
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.
Note that this is the Report Server API and not PBI Service API
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |