Skip to main content
POST
/
api
/
newegg
/
sellers
/newegg/sellers
curl --request POST \
  --url https://api.anysite.io/api/newegg/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@newegg_seller_store",
    "id": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "store_name": "<string>",
    "rating": 123,
    "rating_last_12m": 123,
    "review_count": 123,
    "review_count_last_12m": 123,
    "positive_rate": 123,
    "positive_rate_last_12m": 123,
    "is_top_rated": true,
    "is_hot_seller": true,
    "follower_count": 123,
    "legal_name": "<string>",
    "description": "<string>",
    "image": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Newegg seller store key or a seller store URL

Minimum string length: 1
Examples:

"Techjunkie"

"https://www.newegg.com/Seller-Store/Techjunkie"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@newegg_seller_store
id
string | null
name
string | null
alias
string | null
store_name
string | null
rating
number | null
rating_last_12m
number | null
review_count
integer | null
review_count_last_12m
integer | null
positive_rate
number | null
positive_rate_last_12m
number | null
is_top_rated
boolean | null
is_hot_seller
boolean | null
follower_count
integer | null
description
string | null
image
string | null
city
string | null
state
string | null
country
string | null