Search API Results Starting at Incorrect Index

I have found that to make it work, as previously mentioned, you have to use a multiple of number of items per page.
I maintain a page_no (starting at 0) and items_per_page variables.
I calculate the start_index as
page_no * items_per_page
so the 4th standard page has a start_index of 60 (3 * 20)

This seems to work for me

2 Likes