Endpoint Playground
Test Crawlora's eBay Seller Shop 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>/shop" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| seller (path) | string | Yes | eBay seller username | |
| page | integer | No | Shop page number |
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"total": 120,
"has_more": true,
"result": [
{
"item_id": "196435705622",
"title": "1983 TOPPS BASEBALL - 1952 TOPPS REPRINTS #311 MICKEY MANTLE",
"link": "https://www.ebay.com/itm/196435705622",
"price": 49.95,
"seller": "poloblade",
"logistic": "Free shipping"
}
]
}
}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 listings from the public eBay seller shop tab, with pagination backed by the store odtRefresh response.
{
"code": 200,
"msg": "OK",
"data": {
"page": 1,
"total": 120,
"has_more": true,
"result": [
{
"item_id": "196435705622",
"title": "1983 TOPPS BASEBALL - 1952 TOPPS REPRINTS #311 MICKEY MANTLE",
"link": "https://www.ebay.com/itm/196435705622",
"price": 49.95,
"seller": "poloblade",
"logistic": "Free shipping"
}
]
}
}curl "https://api.crawlora.net/api/v1/ebay/seller/<seller>/shop" \
-H "x-api-key: $CRAWLORA_API_KEY"