Endpoint Playground
Test Crawlora's eBay Seller 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>" \
-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",
"display_name": "POLOBLADE COLLECTIBLES",
"profile_url": "https://www.ebay.com/usr/poloblade",
"store_name": "POLOBLADE COLLECTIBLES",
"store_url": "https://www.ebay.com/str/poloblade",
"positive_feedback_percent": 99.9,
"feedback_count": 291071,
"items_sold": 814000,
"followers": 13000,
"location": "United States",
"member_since": "Jan 09, 2000"
}
}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 details for a public eBay seller profile.
{
"code": 200,
"msg": "OK",
"data": {
"seller": "poloblade",
"display_name": "POLOBLADE COLLECTIBLES",
"profile_url": "https://www.ebay.com/usr/poloblade",
"store_name": "POLOBLADE COLLECTIBLES",
"store_url": "https://www.ebay.com/str/poloblade",
"positive_feedback_percent": 99.9,
"feedback_count": 291071,
"items_sold": 814000,
"followers": 13000,
"location": "United States",
"member_since": "Jan 09, 2000"
}
}curl "https://api.crawlora.net/api/v1/ebay/seller/<seller>" \
-H "x-api-key: $CRAWLORA_API_KEY"