Endpoint Playground
Test Crawlora's eBay Seller About API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/ebay/seller/<seller>/about" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| seller (path) | string | Yes | eBay seller username |
{
"code": 200,
"msg": "OK",
"data": {
"seller": "poloblade",
"store_name": "POLOBLADE COLLECTIBLES",
"store_url": "https://www.ebay.com/str/poloblade",
"location": "United States",
"member_since": "Jan 09, 2000",
"positive_feedback_percent": 99.9,
"followers": 13000,
"items_sold": 814000,
"top_rated_seller": true,
"categories": [
{
"name": "Coins & Paper Money",
"url": "https://www.ebay.com/str/poloblade/Coins-Paper-Money/_i.html?_sacat=11116"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns normalized seller about information from the public eBay store about tab, including seller stats, top-rated status, optional location/member-since fields, and cleaned store categories.
{
"code": 200,
"msg": "OK",
"data": {
"seller": "poloblade",
"store_name": "POLOBLADE COLLECTIBLES",
"store_url": "https://www.ebay.com/str/poloblade",
"location": "United States",
"member_since": "Jan 09, 2000",
"positive_feedback_percent": 99.9,
"followers": 13000,
"items_sold": 814000,
"top_rated_seller": true,
"categories": [
{
"name": "Coins & Paper Money",
"url": "https://www.ebay.com/str/poloblade/Coins-Paper-Money/_i.html?_sacat=11116"
}
]
}
}curl "https://api.crawlora.net/api/v1/ebay/seller/<seller>/about" \
-H "x-api-key: $CRAWLORA_API_KEY"