Skip to main content
GET
/
v1
/
ebay
/
sellers
/
{username}
Get Seller Profile
curl --request GET \
  --url https://scrapebadger.com/v1/ebay/sellers/{username} \
  --header 'x-api-key: <api-key>'
{
  "domain": "<string>",
  "seller": {
    "username": "<string>",
    "url": "<string>",
    "store_name": "<string>",
    "store_url": "<string>",
    "feedback_score": 123,
    "feedback_percent": 123,
    "member_since": "<string>",
    "location": "<string>",
    "items_for_sale": 123,
    "feedback_12mo": {
      "positive": 123,
      "neutral": 123,
      "negative": 123
    },
    "top_rated": true,
    "scraped_utc": 123,
    "scraped_at": "<string>"
  }
}

Path Parameters

username
string
required
The eBay seller username (e.g. topgames_us).

Query Parameters

domain
string
default:"com"
eBay marketplace domain to resolve the seller on.Examples: com, co.uk, de, fr

Response

domain
string
Marketplace domain the seller was fetched from.
seller
object
Seller profile object.

Example Response

{
  "domain": "com",
  "seller": {
    "username": "topgames_us",
    "url": "https://www.ebay.com/usr/topgames_us",
    "store_name": "Top Games US",
    "store_url": "https://www.ebay.com/str/topgamesus",
    "feedback_score": 18452,
    "feedback_percent": 99.4,
    "member_since": "Mar 2014",
    "location": "United States",
    "items_for_sale": 1342,
    "feedback_12mo": { "positive": 9821, "neutral": 41, "negative": 53 },
    "top_rated": true,
    "scraped_at": "2026-06-21T12:00:00Z"
  }
}
Each seller-profile request costs 5 credits. Failed requests are not charged.

Authorizations

x-api-key
string
header
required

Path Parameters

username
string
required

The eBay seller username.

Query Parameters

domain
string
default:com

eBay marketplace domain TLD or alias (com, co.uk, de, fr, ...).

Response

200 - application/json

Seller profile

domain
string
seller
object