Hi bhupen ,
I was just wondering if you have used paging in your rest call. The usual REST result is 25 items (nodes) per page.You can use page size and page numbner to page through your results. Here is an example .
/restapi/vc/threads/recent?page=1&page_size=50
page_size - specifies the number of items per page.
page - specifies the page number.
So in this example , I am asking for 50 thread items per page.You can keep iterating the page number and get the total list .
If you are using a custom component , then there is a separate components for pagination which might be of use to you.
Hope that helps.
Thanks,
Sam