Skip to main content
POST
/
api
/
ebay
/
sellers
/
feedback
/ebay/sellers/feedback
curl --request POST \
  --url https://api.anysite.io/api/ebay/sellers/feedback \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@ebay_seller_feedback",
    "text": "<string>",
    "from_user": "<string>",
    "from_user_score": 123,
    "role": "<string>",
    "item_id": "<string>",
    "item_title": "<string>",
    "item_url": "<string>",
    "price": 123,
    "currency": "<string>",
    "is_verified_purchase": false,
    "period": "<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 or a profile/store URL

Minimum string length: 1
Examples:

"musicmagpie"

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

count
integer
required

Max number of feedback entries 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:@ebay_seller_feedback
rating
enum<string> | null
Available options:
positive,
neutral,
negative
text
string | null
from_user
string | null
from_user_score
integer | null
role
string | null
item_id
string | null
item_title
string | null
item_url
string | null
price
number | null
currency
string | null
is_verified_purchase
boolean
default:false
period
string | null