eBay Deals API
eBay search results often times include deals. These includes items with title, link, price, thumbnail and more. SerpApi is able to scrape, extract, and make sense of those results.
API Examples
Deals results for category_id 9355
{
...
"deals": {
"title": "Limited time deals",
"subtitle": "Free Shipping Included",
"items": [
{
"title": "Apple iPhone 14 Pro Max 256GB Unlocked Very Good Condition",
"link": "https://www.ebay.com/itm/355896538160?var=624955594339",
"serpapi_link": "http://localhost:3000/search.json?ebay_domain=ebay.com&engine=ebay_product&product_id=355896538160",
"product_id": "355896538160",
"price": {
"raw": "$427.10",
"extracted": 427.1
},
"old_price": {
"raw": "$1,199.00",
"extracted": 1199.0,
"discount": "64% off"
},
"extensions": [
"eBay Refurbished"
],
"thumbnail": "https://i.ebayimg.com/images/g/b9AAAOSwPRZnWi3t/s-l960.webp"
},
{
"title": "Apple iPhone 16 Black 128GB Very Good - Refurbished - Unlocked",
"link": "https://www.ebay.com/itm/127494181753",
"serpapi_link": "http://localhost:3000/search.json?ebay_domain=ebay.com&engine=ebay_product&product_id=127494181753",
"product_id": "127494181753",
"price": {
"raw": "$604.44",
"extracted": 604.44
},
"extensions": [
"eBay Refurbished"
],
"thumbnail": "https://i.ebayimg.com/images/g/XKkAAeSw5gxpQZ-N/s-l960.webp"
},
{
"title": "Apple iPhone 16 Plus 128GB Unlocked Excellent Condition",
"link": "https://www.ebay.com/itm/356605666849?var=625572032189",
"serpapi_link": "http://localhost:3000/search.json?ebay_domain=ebay.com&engine=ebay_product&product_id=356605666849",
"product_id": "356605666849",
"price": {
"raw": "$712.29",
"extracted": 712.29
},
"old_price": {
"raw": "$1,399.99",
"extracted": 1399.99,
"discount": "49% off"
},
"extensions": [
"eBay Refurbished"
],
"thumbnail": "https://i.ebayimg.com/images/g/GHAAAeSwyqZpQZ~M/s-l960.webp"
},
]
},
...
}
JSON structure overview
{
...
"deals": {
"title": "String - Title of the deals section",
"subtitle": "String - Subtitle of the deals section",
"items": [
{
"title": "String - Title of the deal item",
"link": "String - URL to the deal item on eBay",
"serpapi_link": "String - URL to the SerpApi endpoint for the deal item",
"product_id": "String - eBay product ID of the deal item",
"price": {
"raw": "String - Raw price of the deal item",
"extracted": "Float - Extracted numerical price of the deal item"
},
"old_price": {
"raw": "String - Raw old price of the deal item",
"extracted": "Float - Extracted numerical old price of the deal item",
"discount": "String - Discount information for the deal item"
},
"extensions": [
"String - Additional information about the deal item"
],
"thumbnail": "String - URL of the thumbnail image for the deal item"
}
]
},
...
}