eBay Review Highlights API

eBay search results often have a review_highlights section. It includes items with title, description, rating, author and more. SerpApi is able to scrape, extract, and make sense of those results.


The API endpoint is https://serpapi.com/search?engine=ebay

Head to the playground for a live and interactive demo.

API Examples

Review Highlights results for category_id 9355

Review Highlights results for category_id 9355

JSON Example

{
  ...
  "review_highlights": [
    {
      "position": 1,
      "title": "Like new Pixel 9, love it!",
      "description": "This is my third Pixel, these are awesome phones and this one has not disappointed. Very fast and responsive, all day battery(and I stream virtually all day, bluetooth constantly connected)",
      "thumbnail": "https://i.ebayimg.com/images/g/m5QAAeSw4dRpav06/s-l400.jpg",
      "link": "https://www.ebay.com/p/10071478529",
      "product_name": "Google Pixel 9 - 128 GB - Obsidian (Unlocked)",
      "author": "arelles0215",
      "rating": 5,
      "published_at": "2025-07-20T23:41:07.000+00:00",
      "verified_purchase": true
    },
    {
      "position": 2,
      "title": "Excellent phone",
      "description": "Very happy with this phone. Can easily get 3 plus days on a charge. Easy to use, touch screen is very sensitive which I love and the processor is very fast. Good price for this phone would definitely recommend.",
      "thumbnail": "https://i.ebayimg.com/images/g/XBIAAOSw14BjmvR3/s-l400.jpg",
      "link": "https://www.ebay.com/p/22043687761",
      "product_name": "Samsung Galaxy S21 Ultra - 128 GB - Phantom Black (Unlocked)",
      "author": "joben1406",
      "rating": 5,
      "published_at": "2023-07-06T19:28:53.000+00:00",
      "verified_purchase": true
    },
    {
      "position": 3,
      "title": "Great phone, Android reaches it's potential with this Samsung product.",
      "description": "Best Phone Ever. Great Camera, Video, Audio. Fun Pen. Lot's of supported apps, plenty power, fantastic screen, tons of memory ok, what dont I like? Slightly heavy but kinda even like the solid feel, kinda longish but I got big hands and pockets and I love the huge screen.... so no complaints. Faster processor than I thought, geek bench reports very good test results even competes well with Galaxy S21 and Plus series which were released later.",
      "thumbnail": "https://i.ebayimg.com/images/g/PwIAAOSwzJJjpU9e/s-l400.jpg",
      "link": "https://www.ebay.com/p/19040080465",
      "product_name": "Samsung Galaxy Note20 Ultra - 128 GB - Mystic White (Unlocked)",
      "author": "ersonne-31",
      "rating": 5,
      "published_at": "2021-06-25T10:01:09.000+00:00",
      "verified_purchase": true
    },
    ...
  ]
  ...
}

JSON structure overview

{
  ...
  "review_highlights": [
    {
      "position": "Integer - Position of the review highlight in the list",
      "title": "String - Title of the review highlight",
      "description": "String - Description of the review highlight",
      "thumbnail": "String - URL of the image associated with the review highlight",
      "link": "String - URL link to the review highlight",
      "product_name": "String - Name of the product being reviewed",
      "author": "String - Author of the review highlight",
      "rating": "Integer - Rating given in the review highlight",
      "published_at": "String - Publication date of the review highlight in ISO 8601 format",
      "verified_purchase": "Boolean - Indicates if the review highlight is from a verified purchase"
    }
  ],
  ...
}