Endpoint Playground
Test Crawlora's eBay Live Streams Batch 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/batch?ids=<ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| ids | string | Yes | One or more eBay Live stream/event ids, up to 9. Comma-separated or repeated query values are both accepted. |
{
"code": 200,
"msg": "OK",
"data": {
"streams": [
{
"id": "FncRQ8VJGxKzLase",
"title": "$500K+ $1 START SINGLES-GIVEAWAYS-HIGH END FLOORS W/ JOSH 08/10",
"state": "LIVE",
"start_time": "2026-08-10T15:59:10Z",
"watched_count": 121,
"hosts": [
{
"id": "UpO5wCULTye",
"username": "filthbombbreaks",
"store_name": "Filthbombbreaks"
}
],
"tags": [
"$1 Starts",
"Baseball"
],
"preview_image_url": "https://i.ebayimg.com/00/s/ODg4WDU5Mg==/z/8zoAAeSwNz9qdOYW/$_45.JPG",
"preview_stream_url": "https://live.us.shoplive.cloud/live-p/45-5zBlMTqjPZvFoNPWb-ue2_480p/playlist.m3u8?preview=1"
}
]
}
}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 summaries for multiple eBay Live streams/events in one call, up to 9 ids per request.
{
"code": 200,
"msg": "OK",
"data": {
"streams": [
{
"id": "FncRQ8VJGxKzLase",
"title": "$500K+ $1 START SINGLES-GIVEAWAYS-HIGH END FLOORS W/ JOSH 08/10",
"state": "LIVE",
"start_time": "2026-08-10T15:59:10Z",
"watched_count": 121,
"hosts": [
{
"id": "UpO5wCULTye",
"username": "filthbombbreaks",
"store_name": "Filthbombbreaks"
}
],
"tags": [
"$1 Starts",
"Baseball"
],
"preview_image_url": "https://i.ebayimg.com/00/s/ODg4WDU5Mg==/z/8zoAAeSwNz9qdOYW/$_45.JPG",
"preview_stream_url": "https://live.us.shoplive.cloud/live-p/45-5zBlMTqjPZvFoNPWb-ue2_480p/playlist.m3u8?preview=1"
}
]
}
}curl "https://api.crawlora.net/api/v1/ebay/live/streams/batch?ids=<ids>" \
-H "x-api-key: $CRAWLORA_API_KEY"