Skip to main content
POST
/
api
/
newegg
/
products
/
offers
/newegg/products/offers
curl --request POST \
  --url https://api.anysite.io/api/newegg/products/offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@newegg_product_offer",
    "seller": {
      "@type": "@newegg_seller",
      "id": "<string>",
      "name": "<string>",
      "alias": "<string>",
      "rating": 123,
      "review_count": 123,
      "is_top_rated": true
    },
    "price": 123,
    "currency": "<string>",
    "shipping": 123,
    "instant_rebate": 123,
    "condition": "<string>",
    "ships_from": "<string>",
    "is_in_stock": 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 results 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_offer
seller
NeweggSeller · object
price
number | null
currency
string | null
shipping
number | null
instant_rebate
number | null
condition
string | null
ships_from
string | null
is_in_stock
boolean | null