Skip to main content
POST
/
api
/
ebay
/
sellers
/
items
/ebay/sellers/items
curl --request POST \
  --url https://api.anysite.io/api/ebay/sellers/items \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 5000,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@ebay_seller_item",
    "title": "<string>",
    "price": 123,
    "currency": "<string>",
    "list_price": 123,
    "condition": "<string>",
    "subtitle": "<string>",
    "sold_count": 123,
    "image": "<string>",
    "buying_format": "<string>",
    "bid_count": 123,
    "has_best_offer": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

eBay seller username, store URL or any seller listings URL

Minimum string length: 1
Examples:

"musicmagpie"

"https://www.ebay.com/usr/musicmagpie"

"https://www.ebay.com/str/musicmagpie"

count
integer
required

Max number of listings to return

Required range: 1 <= x <= 10000
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_seller_item
title
string | null
price
number | null
currency
string | null
list_price
number | null
condition
string | null
subtitle
string | null
sold_count
integer | null
image
string | null
buying_format
string | null
bid_count
integer | null
has_best_offer
boolean
default:false