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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
akashgera
Helper I
Helper I

Dealing with paginated API using Recursion function

Hello Folks,

I am using paginated API to fetch the data as per page number , one single page fetches only 100 records and total I have 30824 records which requires data from 309 pages. So I want here is to write a m code in power query which will change the page number on its own through the loop/iterative method till page 309 and union all the above pages.

Pls look into my M code below:

let
url = "https://fxxxxxxxxxxxxxxxxxx/prod/api/V1/catalog",
header= [#"x-api-key" = "XXXXXXXXXXXXX",
#"Content-Type" = "application/json"],
body=[
page_no=1,                    // Want to change this page no. dynamically after returning the previous list until page 309
page_size=100
],

webdata = Web.Contents(url, [Content = Json.FromValue(body),Headers=header]),
response = Json.Document(webdata),
items1 = response[items]
in
items1

 

Pls help.! @ImkeF 

1 ACCEPTED SOLUTION
mahoneypat
Employee
Employee

Please see this video for a potentially simpler way to do this.  Also, have you tried to increase the page_size value to get >100 in each web call?

Power BI - Tales From The Front - REST APIs - YouTube

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

3 REPLIES 3
mahoneypat
Employee
Employee

Please see this video for a potentially simpler way to do this.  Also, have you tried to increase the page_size value to get >100 in each web call?

Power BI - Tales From The Front - REST APIs - YouTube

 

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Dear Mahoneypat,

I have watched your video and got the resolution, thank you so much for providing the help, you have saved my day today..🙏

Kudos to you and your skill set.👍

People like you are much needed in this PBI community.

Hello sir,

Thanks for the response, I have tried to increase the page size >100, but unfortunately it is not giving me more than 100 records, So the max. limit of records per web call is 100 only.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors