Endpoint Playground
Test Crawlora's eBay Live Stream 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>" \
-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": {
"id": "qrJnMkM8X2hJuIf3",
"title": "Jules' Tools - Milwaukee, DeWALT, Ryobi Power TOOLS!!!",
"description": "Brand NEW & Open Box Milwaukee tools, batteries, and bundles!",
"state": "LIVE",
"start_time": "2026-08-09T17:01:30Z",
"watched_count": 196,
"hosts": [
{
"id": "I92-9JgyS0C",
"username": "julestools",
"store_name": "Jules Tools",
"feedback_positive_count": 17315,
"feedback_neutral_count": 15,
"feedback_negative_count": 18,
"feedback_positive_percent": 99.9,
"communication_rating": 4.99,
"item_as_described_rating": 4.95,
"shipping_cost_rating": 4.97,
"shipping_time_rating": 5
}
],
"tags": [
"Outdoor",
"Tools"
],
"channels": [
"SHOPLIVE"
],
"preview_image_url": "https://i.ebayimg.com/00/s/MTE4M1g3ODc=/z/840AAeSwE55qZjQL/$_45.JPG",
"concurrent_viewer_count": 42,
"site_id": "0"
}
}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 detail for a single eBay Live stream/event, including each host's feedback summary for the last 365 days.
{
"code": 200,
"msg": "OK",
"data": {
"id": "qrJnMkM8X2hJuIf3",
"title": "Jules' Tools - Milwaukee, DeWALT, Ryobi Power TOOLS!!!",
"description": "Brand NEW & Open Box Milwaukee tools, batteries, and bundles!",
"state": "LIVE",
"start_time": "2026-08-09T17:01:30Z",
"watched_count": 196,
"hosts": [
{
"id": "I92-9JgyS0C",
"username": "julestools",
"store_name": "Jules Tools",
"feedback_positive_count": 17315,
"feedback_neutral_count": 15,
"feedback_negative_count": 18,
"feedback_positive_percent": 99.9,
"communication_rating": 4.99,
"item_as_described_rating": 4.95,
"shipping_cost_rating": 4.97,
"shipping_time_rating": 5
}
],
"tags": [
"Outdoor",
"Tools"
],
"channels": [
"SHOPLIVE"
],
"preview_image_url": "https://i.ebayimg.com/00/s/MTE4M1g3ODc=/z/840AAeSwE55qZjQL/$_45.JPG",
"concurrent_viewer_count": 42,
"site_id": "0"
}
}curl "https://api.crawlora.net/api/v1/ebay/live/streams/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"