Core API
...
Parameters
Seller Data
Seller Feedback
3min
seller feedback parameters get get /request the seller feedback parameters are applicable when making a request with type=seller feedback to retrieve seller feedback data (i e feedback this seller has received or left for others) for a given seller on a given ebay domain the ebay domain is specified using the ebay domain parameter and the seller name is specified in the seller name parameter the parameters should be appended as querystring parameters to the ebay product data api get http request seller feedback results are retrieved from the seller feedback results page https //www ebay com/usr/lytecordz on ebay for example, to request seller feedback results for the seller name lytecordz on ebay com , the request would be http https //api countdownapi com/request?api key=demo\&type=seller feedback\&ebay domain=ebay com\&seller name=lytecordzcurl l get https //api countdownapi com/request \\ d api key="demo" \\ d type="seller feedback" \\ d ebay domain="ebay com" \\ d seller name="lytecordz"const axios = require('axios'); // set up the request parameters const params = { api key "demo", type "seller feedback", ebay domain "ebay com", seller name "lytecordz" } // make the http get request to countdown api axios get('https //api countdownapi com/request', { params }) then(response => { // print the json response from countdown api console log(json stringify(response data, 0, 2)); }) catch(error => { // catch and print the error console log(error); })import requests import json \# set up the request parameters params = { 'api key' 'demo', 'type' 'seller feedback', 'ebay domain' 'ebay com', 'seller name' 'lytecordz' } \# make the http get request to countdown api api result = requests get('https //api countdownapi com/request', params) \# print the json response from countdown api print(json dumps(api result json()))\<?php \# set up the request parameters $querystring = http build query(\[ 'api key' => 'demo', 'type' => 'seller feedback', 'ebay domain' => 'ebay com', 'seller name' => 'lytecordz' ]); \# make the http get request to countdown api $ch = curl init(sprintf('%s?%s', 'https //api countdownapi com/request', $querystring)); curl setopt($ch, curlopt returntransfer, true); curl setopt($ch, curlopt followlocation, true); \# the following options are required if you're using an outdated openssl version \# more details https //www openssl org/blog/blog/2021/09/13/letsencryptrootcertexpire/ curl setopt($ch, curlopt ssl verifyhost, false); curl setopt($ch, curlopt ssl verifypeer, false); curl setopt($ch, curlopt timeout, 180); $api result = curl exec($ch); curl close($ch); \# print the json response from countdown api echo $api result; ?> seller feedback parameters the following parameters are available for all requests made when type=seller feedback parameter required description ebay domain optional the ebay domain to retrieve seller feedback results from for a full list of supported ebay domains see supported ebay domains https //docs trajectdata com/countdownapi/ebay product data api/reference/ebay domains seller name optional the seller name to retrieve seller feedback details for used in combination with the ebay domain parameter seller names are returned from other countdown api requests such as type=product and type=reviews note if the seller name and ebay domain parameters are supplied then the url parameter is ignored url optional the ebay seller feedback page url to retrieve seller feedback details from note if the url parameter is supplied then the ebay domain and seller name parameters are ignored seller feedback type optional the type of seller feedback to retrieve valid values are all (for all received feedback), received as buyer (for all feedback received when this seller was a buyer, received as seller (for all feedback received when this seller was a seller or left for others (for feedback this seller has left for others) search term optional a search term to use to search seller feedback note the search term parameter can only be used when seller feedback type=received as seller seller feedback time period optional determines the time period of the seller feedback to retrieve valid values are all (the default), one month , six months or twelve months note the seller feedback time period parameter can only be used when seller feedback type=received as buyer or seller feedback type=received as seller seller feedback overall rating optional determines the overall rating filter to be applied to the seller feedback to retrieve valid values are positive , neutral or negative note the seller feedback overall rating parameter cannot be used when seller feedback type=left for others additionally seller feedback overall rating can only be used when seller feedback time period is set to one month , six months or twelve months page optional the current page of seller feedback results to retrieve max page optional use the max page parameter to get multiple pages of results in one request the api will automatically paginate through pages and concatenate the results into one response see the pagination https //docs trajectdata com/countdownapi/ebay product data api/pagination docs for more information num optional determines the number of seller feedback results shown per page valid values are num=25 , num=50 , num=100 and num=200 next steps seller feedback results https //docs trajectdata com/countdownapi/ebay product data api/results/seller feedback