Hey everyone, I am trying to scrape EmpireFlippers website and it is using Load more listing button for pagination but I do not want to use automation library. Initial API call (from network tab):
After clicking “Load More”: → GET https://empireflippers.com/wp-json/ajax-load-more/cache/get?id=marketplace_load_more&name=5a5e38caa07dc3eb5c9d3d89e7054bf2 The name param (hash) changes dynamically. It’s not a page number and seems to be tied to some caching mechanism (likely MD5). Does anyone know can I get the next name value programmatically without using Selenium? Is there any logic or endpoint to retrieve the next hash? Thanks in advance:)