Skip to main content
POST
/
api
/
newegg
/
products
/
reviews
/newegg/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/newegg/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@newegg_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "pros": "<string>",
    "cons": "<string>",
    "author": "<string>",
    "created_at": "<string>",
    "helpful_count": 123,
    "vote_count": 123,
    "is_verified_owner": true
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Newegg item number or a product URL containing it

Minimum string length: 1
Examples:

"N82E16814932611"

"https://www.newegg.com/p/N82E16814932611"

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:@newegg_product_review
rating
integer | null
title
string | null
text
string | null
pros
string | null
cons
string | null
author
string | null
created_at
string | null
helpful_count
integer | null
vote_count
integer | null
is_verified_owner
boolean | null