Skip to main content
GET
/
v1
/
ebay
/
items
/
{item_id}
/
reviews
Get Item Reviews
curl --request GET \
  --url https://scrapebadger.com/v1/ebay/items/{item_id}/reviews \
  --header 'x-api-key: <api-key>'
{
  "domain": "<string>",
  "item_id": "<string>",
  "product_id": "<string>",
  "rating": 123,
  "ratings_total": 123,
  "histogram": {
    "five_star": 123,
    "four_star": 123,
    "three_star": 123,
    "two_star": 123,
    "one_star": 123
  },
  "reviews": [
    {
      "title": "<string>",
      "body": "<string>",
      "rating": 123,
      "author": "<string>",
      "date_raw": "<string>",
      "date_utc": 123,
      "date_at": "<string>",
      "helpful_votes": 123,
      "verified_purchase": true
    }
  ],
  "pagination": {
    "current_page": 123,
    "per_page": 123,
    "total_pages": 123,
    "total_results": 123
  },
  "scraped_utc": 123,
  "scraped_at": "<string>"
}

Path Parameters

item_id
string
required
The eBay listing item id whose catalog product reviews you want.

Query Parameters

domain
string
default:"com"
eBay marketplace domain where the listing lives.Examples: com, co.uk, de, fr
page
integer
default:1
Page number for paginated reviews. Range: 1 - 50.

Response

domain
string
Marketplace domain the reviews were fetched from.
item_id
string
The item id the reviews were requested for (nullable).
product_id
string
The eBay catalog product id the reviews belong to (nullable).
rating
number
Average star rating across all reviews (0-5, nullable).
ratings_total
integer
Total number of ratings (nullable).
histogram
object
Star-bucket counts.
reviews
array
Array of reviews.
pagination
object
Pagination metadata with current_page, per_page, total_pages, total_results.
scraped_at
string
ISO 8601 timestamp when the reviews were scraped.

Example Response

{
  "domain": "com",
  "item_id": "256123456789",
  "product_id": "20057872541",
  "rating": 4.8,
  "ratings_total": 1245,
  "histogram": { "five_star": 1050, "four_star": 120, "three_star": 40, "two_star": 20, "one_star": 15 },
  "reviews": [
    {
      "title": "Excellent console",
      "body": "Screen is gorgeous and the build quality is great.",
      "rating": 5.0,
      "author": "gamer_dad",
      "date_raw": "May 12, 2026",
      "date_at": "2026-05-12T00:00:00Z",
      "helpful_votes": 23,
      "verified_purchase": true
    }
  ],
  "pagination": { "current_page": 1, "per_page": 20, "total_pages": 50, "total_results": 1245 },
  "scraped_at": "2026-06-21T12:00:00Z"
}
Each item-reviews request costs 10 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Path Parameters

item_id
string
required

The eBay listing item id.

Query Parameters

domain
string
default:com

eBay marketplace domain TLD or alias (com, co.uk, de, fr, ...).

page
integer
default:1

Page number for reviews.

Required range: 1 <= x <= 50

Response

200 - application/json

Reviews

domain
string
item_id
string | null
product_id
string | null
rating
number | null
ratings_total
integer | null
histogram
object
reviews
object[]
pagination
object
scraped_utc
number | null
scraped_at
string | null