Hi Berny you need to something like this to page through
// Loop through all the pages
Source = Json.Document(GetJsonQuery),
Custom1 = List.Generate( () =>
[ResultRecord = Source],
each [ResultRecord] <> null,
each [
ResultRecord = try
Json.Document(Web.Contents(“API Reference URL”
,[
RelativePath = “?page=” & Text.AfterDelimiter([ResultRecord][next-page],":"),
Headers = [#“Authorization”=AccessTokenHeader]
]
)) otherwise null
]
),
The [next-page] contains the next page number which will be used as a parameter ?Page to the next api call.
This should give you a list which you can then convert to a table.