Ebay Organic Results API
Ebay search main results are called organic results. Some results are simple and straightforward. Others include rich data like reviews, condition, shipping and other special snippets. SerpApi is able to scrape, extract, and make sense of both simple and more complex organic results.
API Examples
Organic results overview
When SerpApi encounters organic results, we add them to our JSON output as the array
organic_results
. For each organic result, we are able to extract its title
, subtitle
, link
, condition
, price
, shipping
, extensions
, buying_options
and more.
{
...
"organic_results": [
{
"sponsored": true,
"title": "Caffitaly Nespresso Compatible Coffee Capsules Premium Blend Italian Coffee Pods",
"subtitle": "sold and shipped same day by Luxuryfreeshop",
"link": "https://www.ebay.com/itm/Caffitaly-Nespresso-Compatible-Coffee-Capsules-Premium-Blend-Italian-Coffee-Pods/...",
"condition": "Brand New",
"price": {
"from": {
"raw": "$19.95",
"extracted": 19.95
},
"to": {
"raw": "$36.95",
"extracted": 36.95
}
},
"shipping": "Free Shipping",
"extensions": [
"Buy It Now",
"40+ Watching"
],
"thumbnail": "https://i.ebayimg.com/thumbs/images/m/mErYOmIjDftXtlYIJoxkYjw/s-l225.jpg"
},
{
"sponsored": true,
"title": "100% Kona / Hawaiian Coffee Whole Beans - Fresh Roasted Daily 1LBS Bag !",
"subtitle": "Roasted In The Morning Shipped that Afternoon !",
"link": "https://www.ebay.com/itm/100-Kona-Hawaiian-Coffee-Whole-Beans-Fresh-Roasted-Daily-1LBS-Bag/...",
"condition": "Brand New",
"price": {
"raw": "$20.99",
"extracted": 20.99
},
"shipping": "Free Shipping",
"top_rated": true,
"returns": "Free Returns",
"extensions": [
"Buy It Now",
"3,604+ Sold"
],
"thumbnail": "https://i.ebayimg.com/thumbs/images/m/mSt-arTl7TH8p8nCDcDdQlw/s-l225.jpg"
},
{
"sponsored": true,
"title": "Black Refillable Reusable Single K-Cups Filter Pod for Keurig 2.0 Coffee Makers",
"link": "https://www.ebay.com/itm/Black-Refillable-Reusable-Single-K-Cups-Filter-Pod-for-Keurig-2-0-Coffee-Makers/...",
"condition": "Brand New",
"price": {
"from": {
"raw": "$4.25",
"extracted": 4.25
},
"to": {
"raw": "$9.98",
"extracted": 9.98
}
},
"shipping": "Free Shipping",
"top_rated": true,
"returns": "Free Returns",
"extensions": [
"Buy It Now"
],
"thumbnail": "https://i.ebayimg.com/thumbs/images/m/mN0Djg36r9wqTPMrtfUfpgw/s-l225.jpg"
},
...
],
...
}