Skip to main content
POST
/
api
/
ebay
/
sellers
/ebay/sellers
curl --request POST \
  --url https://api.anysite.io/api/ebay/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@ebay_seller",
    "name": "<string>",
    "feedback_count": 123,
    "positive_percent": 123,
    "item_sold_count": 123,
    "follower_count": 123,
    "location": "<string>",
    "image": "<string>",
    "member_since": "<string>",
    "description": "<string>"
  }
]

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 name, or a seller/store profile URL

Minimum string length: 1
Examples:

"musicmagpie"

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

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

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@ebay_seller
name
string | null
feedback_count
integer | null
positive_percent
number | null
item_sold_count
integer | null
follower_count
integer | null
location
string | null
image
string | null
member_since
string | null
description
string | null