Skip to main content
POST
/
api
/
ebay
/
products
/
reviews
/ebay/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/ebay/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@ebay_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "created_date": "<string>",
    "is_verified": true,
    "condition": "<string>",
    "sold_by": "<string>",
    "helpful_count": 123,
    "is_top_favorable": false,
    "is_top_critical": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

eBay product (catalog) ID or a product URL containing it

Minimum string length: 1
Examples:

"4062765295"

"https://www.ebay.com/p/4062765295"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@ebay_product_review
rating
number | null
title
string | null
text
string | null
author
string | null
created_at
string | null
created_date
string | null
is_verified
boolean | null
condition
string | null
sold_by
string | null
helpful_count
integer | null
is_top_favorable
boolean
default:false
is_top_critical
boolean
default:false