Getting around the 50,000 listing limit #65
-
I built something similar but I ran into issues around page 50. After some investigating I found that Ebay won't show the requester any more than 10,000 listings, even through the browser. How did you get around this roadblock? I was able to get around the captcha issue with proxies but I can't find anything related to getting around the listing limit. I thought using listing date as an 'anchor' and then picking up and moving the date every 10,000 listings could work, but I can't find any search parameter for listing date! Any help offered is much appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
There is no way to filter by date on ebay, however what own can do is filter by price. Suppose you have 20,000 listings, and 10,000 are below $100 and 10,000 are above $100. You can do a search for $0-$100 and then a second for $100.01-$999999 and you'll get everything. Rather than try to figure that out on my own for each listing, if you look at my code I basically do a binary search, splitting my input ranges in half until the results within that range are less than 800, then I iterate over those ranges I determined. |
Beta Was this translation helpful? Give feedback.
There is no way to filter by date on ebay, however what own can do is filter by price. Suppose you have 20,000 listings, and 10,000 are below $100 and 10,000 are above $100. You can do a search for $0-$100 and then a second for $100.01-$999999 and you'll get everything. Rather than try to figure that out on my own for each listing, if you look at my code I basically do a binary search, splitting my input ranges in half until the results within that range are less than 800, then I iterate over those ranges I determined.