Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello All,
I have this Query below that does a POST REST API call for results. Note the "Page=" where I can specify a page of results. I'm trying to figure out how to paginate this to get all results. I think it would somehow use List.Generate to check against a null value? Would someone help out? Note that with this API the total record count value is in a return header which I gather from reading we can't actually see in Power Query/Power BI? Normally I would use that record count to create a table of that number. Help?
let
url = "https://tessy.com/tessituraservice/Reporting/Lists/182243/Results",
body = "OutputSetId = 1137"&"Page=1",
Source = Json.Document(Web.Contents(url,[Headers = [#"Authorization"="Basic <<encoded>>", #"Content-Type"="application/x-www-form-urlencoded"], Content = Text.ToBinary(body)]))
in
Source
Solved! Go to Solution.
I got this working using a different method found on youtube. thanks!
I got this working using a different method found on youtube. thanks!
Please see Method 3 in this article to see how to do this. The example is pretty close to your scenario.
Handling Paginated REST API Results with Power Query | John Dalesandro
Pat
Hi @rsderby68 ,
You can try to remove "&"Page=1" and run again to get all pages.
Or you need to get the maximum number of pages according to your API.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |