Skip to main content
POST
/
api
/
ebay
/
products
/ebay/products
curl --request POST \
  --url https://api.anysite.io/api/ebay/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@ebay_product",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "mpn": "<string>",
    "upc": "<string>",
    "gtin13": "<string>",
    "image": "<string>",
    "images": [],
    "rating": 123,
    "review_count": 123,
    "lowest_price": 123,
    "highest_price": 123,
    "currency": "<string>",
    "listing_count": 123,
    "specs": {},
    "breadcrumbs": [],
    "category": "<string>",
    "description": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

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

Minimum string length: 1
Examples:

"4062765295"

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

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:@ebay_product
title
string | null
brand
string | null
model
string | null
mpn
string | null
upc
string | null
gtin13
string | null
image
string | null
images
string[]
rating
number | null
review_count
integer | null
lowest_price
number | null
highest_price
number | null
currency
string | null
listing_count
integer | null
specs
Specs · object
breadcrumbs
string[]
category
string | null
description
string | null