Skip to main content
POST
/
api
/
newegg
/
products
/newegg/products
curl --request POST \
  --url https://api.anysite.io/api/newegg/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@newegg_product",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "upc": "<string>",
    "price": 123,
    "list_price": 123,
    "price_min": 123,
    "price_max": 123,
    "currency": "<string>",
    "rating": 123,
    "review_count": 123,
    "condition": "<string>",
    "availability": "<string>",
    "in_stock": true,
    "image": "<string>",
    "images": [],
    "breadcrumbs": [],
    "category": "<string>",
    "description": "<string>",
    "specifications": {},
    "warranty": "<string>",
    "return_policy_days": 123,
    "is_marketplace": true,
    "seller": {
      "@type": "@newegg_seller",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "rating": 123,
      "review_count": 123,
      "is_top_rated": 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"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@newegg_product
title
string | null
brand
string | null
model
string | null
upc
string | null
price
number | null
list_price
number | null
price_min
number | null
price_max
number | null
currency
string | null
rating
number | null
review_count
integer | null
condition
string | null
availability
string | null
in_stock
boolean | null
image
string | null
images
string[]
breadcrumbs
string[]
category
string | null
description
string | null
specifications
Specifications · object
warranty
string | null
return_policy_days
integer | null
is_marketplace
boolean | null
seller
NeweggSeller · object