Endpoint Playground
Test Crawlora's eBay Live Stream Items 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/live/streams/<id>/items" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | eBay Live stream/event id |
{
"code": 200,
"msg": "OK",
"data": {
"event_id": "qrJnMkM8X2hJuIf3",
"items": [
{
"listing_id": "188766881103",
"title": "#001 - Tool ONLY - Unless Specified! - Watch Auction - No Cancellations! 8/9 1pm",
"status": "ENDED",
"price": 1,
"currency": "USD",
"bid_count": 22,
"sale_type": "Auction",
"end_date": "2026-08-09T17:05:26Z",
"is_exclusive": true,
"auction_status": "ENDED",
"auction_price": 19,
"auction_currency": "USD",
"winner_username": "angelina2026_4",
"is_visible": true
}
]
}
}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 the currently featured/auction items for an eBay Live stream, including live bidding state.
{
"code": 200,
"msg": "OK",
"data": {
"event_id": "qrJnMkM8X2hJuIf3",
"items": [
{
"listing_id": "188766881103",
"title": "#001 - Tool ONLY - Unless Specified! - Watch Auction - No Cancellations! 8/9 1pm",
"status": "ENDED",
"price": 1,
"currency": "USD",
"bid_count": 22,
"sale_type": "Auction",
"end_date": "2026-08-09T17:05:26Z",
"is_exclusive": true,
"auction_status": "ENDED",
"auction_price": 19,
"auction_currency": "USD",
"winner_username": "angelina2026_4",
"is_visible": true
}
]
}
}curl "https://api.crawlora.net/api/v1/ebay/live/streams/<id>/items" \
-H "x-api-key: $CRAWLORA_API_KEY"