skip to Main Content

I’ve been checking out the eBay API recently and was planning on using it for a project but noticed one of the key API calls I’d need (findCompletedItems) is deprecated and has been for some time. Discussion on the eBay developer forum from October 2020 doesn’t yield much other than scraping (which eBay can and does block apparently) or paying for the MarketPlace Insights API (limited access and, based on posts from the forums, nobody can get in because eBay reviews and rejects them).

Does anyone know if it’s still near impossible to access the MarketPlace Insights API or if there is another way to find completed listings from eBay through some other means? The discussion in the developer forums also brings up certain websites that are still able to show completed listings but nobody seems to understand how they do it.

2

Answers


  1. Found an API that scrapes eBay, solves captchas, and returns completed (sold) listings using keywords, aspects, categories, etc.

    https://rapidapi.com/ecommet/api/ebay-average-selling-price/details

    Login or Signup to reply.
  2. For me the above recommendation does not work. Maybe I misconfigured something.

    <!DOCTYPE html>
    <html>
      <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta charset="utf-8">
        <title>Heroku | Application Error</title>
        <style media="screen">
          html,body,iframe {
            margin: 0;
            padding: 0;
          }
          html,body {
            height: 100%;
            overflow: hidden;
          }
          iframe {
            width: 100%;
            height: 100%;
            border: 0;
          }
        </style>
      </head>
      <body>
        <iframe src="//www.herokucdn.com/error-pages/no-such-app.html"></iframe>
      </body>
    </html>
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search