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/searchAPI Parameters
🔑
Scrapingdog Parameters
api_keyRequiredYour personal API key. Available on your dashboard.
Type: String
🔍
Search
urlRequiredURL 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
htmlOptionalSet totrueto 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"
import requests params = { "api_key": "APIKEY", "url": "https://www.ebay.com/sch/i.html?_nkw=laptop" } response = requests.get("https://api.scrapingdog.com/ebay/search", params=params) print(response.json())
const params = new URLSearchParams({ api_key: "APIKEY", url: "https://www.ebay.com/sch/i.html?_nkw=laptop" }); const response = await fetch(`https://api.scrapingdog.com/ebay/search?${params}`); const data = await response.json(); console.log(data);
<?php $url = 'https://api.scrapingdog.com/ebay/search?' . http_build_query([ 'api_key' => 'APIKEY', 'url' => 'https://www.ebay.com/sch/i.html?_nkw=laptop', ]); echo file_get_contents($url);
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
}
]
}