How to implment Infinite scrolling(Extendable Verticle Scrolling) on API response?

I think @boston85719 means this one:

What you also need is to understand how the API call works.

Steps would be something like:

  1. First API Call
    you will get back some content as well as a nextPageToken

  2. When User scrolls to last entry of your results → make another api call with your nextPageToken from result 1.

  3. Do this until nextPageToken is empty

Try to reproduce this and it will work. (Without that plugin you could go with a button to load the next results.