How to achieve pagination with the API offset parameter

I am trying to achieve the pagination of large comments while retrieving the data with API v2. I tried using the offset parameter, but it doesn't work at all My first request is : https://www.minds.com/api/v2/comments/1125488447281643520?limit=10

which gives me a Json response : Screen_Shot_2020-07-06_at_6.42.40_PM

I issued another request trying to use the offset . My request being : https://www.minds.com/api/v2/comments/1125488447281643520?offset=10&limit=10

again giving me the same response: Screen_Shot_2020-07-06_at_6.42.40_PM

The contents of the comments array on both of the cases are identical, and the offset is not being applied at all . How can I apply offset properly?. Any help would be greatly appreciated. Thanks