Scrapingdog

eBay Search API

The eBay Search Scraper API lets you scrape eBay search result pages by passing any eBay search URL. Returns product titles, item IDs, prices, seller info, condition, and shipping details. Each successful request costs 5 API credits.

Endpoint: https://api.scrapingdog.com/ebay/search

API Parameters

🔑

Scrapingdog Parameters

  • api_key Required
    Your personal API key. Available on your dashboard.

    Type: String
🔍

Search

  • url Required
    URL of the eBay search page to scrape (e.g., https://www.ebay.com/sch/i.html?_nkw=laptop). You can build this from eBay's website using their search filters.

    Type: String

️ Advanced

  • html Optional
    Set to true to return the full HTML of the eBay page instead of parsed JSON. Default: false.

    Type: Boolean

API Examples

Code to Integrate
curl "https://api.scrapingdog.com/ebay/search?api_key=APIKEY&url=https://www.ebay.com/sch/i.html?_nkw=laptop"
API Response
{
  "search_results": [
    {
      "position": 1,
      "itemId": "226940136106",
      "title": "BULK HP - LENOVO LAPTOP SALE WITH 28 LAPTOPS - PLEASE READ DESCRIPTION",
      "seller": {
        "name": "eworksil",
        "feedback": "1.9K",
        "positive_feedback_percent": "97.9"
      },
      "condition": "Pre-Owned",
      "is_sponsored": true,
      "rating": "",
      "reviews": "",
      "buying_format": "",
      "is_best_offer": false,
      "price": "$899.00",
      "extracted_price": 899.00,
      "original_price": "",
      "extracted_original_price": null,
      "discount": "",
      "link": "https://www.ebay.com/itm/226940136106",
      "items_sold": "",
      "extracted_items_sold": null,
      "shipping": "Free shipping",
      "is_free_return": false
    },
    {
      "position": 2,
      "itemId": "305209925234",
      "title": "Apple MacBook Pro 14-inch M3 Pro - 18GB RAM, 512GB SSD - Space Gray",
      "seller": {
        "name": "techdeals_pro",
        "feedback": "12.4K",
        "positive_feedback_percent": "99.2"
      },
      "condition": "Open box",
      "is_sponsored": false,
      "rating": "4.9",
      "reviews": "238",
      "buying_format": "Buy It Now",
      "is_best_offer": true,
      "price": "$1,649.99",
      "extracted_price": 1649.99,
      "original_price": "$1,999.00",
      "extracted_original_price": 1999.00,
      "discount": "17% off",
      "link": "https://www.ebay.com/itm/305209925234",
      "items_sold": "47",
      "extracted_items_sold": 47,
      "shipping": "Free shipping",
      "is_free_return": true
    }
  ]
}