Skip to main content
POST
/
api
/
ebay
/
items
/ebay/items
curl --request POST \
  --url https://api.anysite.io/api/ebay/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "item": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@ebay_item",
    "title": "<string>",
    "price": 123,
    "currency": "<string>",
    "list_price": 123,
    "condition": "<string>",
    "seller_notes": "<string>",
    "quantity_available": 123,
    "sold_count": 123,
    "buying_formats": [],
    "has_best_offer": false,
    "image": "<string>",
    "images": [],
    "item_specifics": {},
    "brand": "<string>",
    "mpn": "<string>",
    "upc": "<string>",
    "breadcrumbs": [],
    "category": "<string>",
    "seller": {
      "@type": "@ebay_item_seller",
      "id": "<string>",
      "name": "<string>",
      "feedback_count": 123,
      "positive_percent": 123,
      "store_url": "<string>"
    },
    "watcher_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
item
string
required

eBay item ID or a listing URL containing it

Minimum string length: 1
Examples:

"256879744174"

"https://www.ebay.com/itm/256879744174"

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_item
title
string | null
price
number | null
currency
string | null
list_price
number | null
condition
string | null
seller_notes
string | null
quantity_available
integer | null
sold_count
integer | null
buying_formats
string[]
has_best_offer
boolean
default:false
image
string | null
images
string[]
item_specifics
Item Specifics · object
brand
string | null
mpn
string | null
upc
string | null
breadcrumbs
string[]
category
string | null
seller
EbayItemSeller · object
watcher_count
integer | null