Endpoint Playground
Test Crawlora's eBay Live Streams 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?category=explore" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category | string | No | explore | eBay Live category channel, defaults to explore |
| request_number | integer | No | Pagination cursor from a previous response's next_request_number, defaults to 0 | |
| session_id | string | No | Pagination session id from a previous response's session_id |
{
"code": 200,
"msg": "OK",
"data": {
"category": "explore",
"streams": [
{
"id": "qrJnMkM8X2hJuIf3",
"title": "Jules' Tools - Milwaukee, DeWALT, Ryobi Power TOOLS!!!",
"state": "LIVE",
"start_time": "2026-08-09T17:01:30Z",
"watched_count": 196,
"hosts": [
{
"id": "I92-9JgyS0C",
"username": "julestools",
"store_name": "Jules Tools"
}
],
"tags": [
"Outdoor",
"Tools"
],
"channels": [
"SHOPLIVE"
],
"preview_image_url": "https://i.ebayimg.com/00/s/MTE4M1g3ODc=/z/840AAeSwE55qZjQL/$_45.JPG",
"live_stream_url": "https://live.us.shoplive.cloud/live/45-5WhDlPhrTUvioiwUb-ue2.m3u8"
}
],
"next_request_number": 1,
"session_id": "12de43d1-1ab2-427b-a447-660797b06a88"
}
}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 currently live and upcoming eBay Live streams for a category channel.
{
"code": 200,
"msg": "OK",
"data": {
"category": "explore",
"streams": [
{
"id": "qrJnMkM8X2hJuIf3",
"title": "Jules' Tools - Milwaukee, DeWALT, Ryobi Power TOOLS!!!",
"state": "LIVE",
"start_time": "2026-08-09T17:01:30Z",
"watched_count": 196,
"hosts": [
{
"id": "I92-9JgyS0C",
"username": "julestools",
"store_name": "Jules Tools"
}
],
"tags": [
"Outdoor",
"Tools"
],
"channels": [
"SHOPLIVE"
],
"preview_image_url": "https://i.ebayimg.com/00/s/MTE4M1g3ODc=/z/840AAeSwE55qZjQL/$_45.JPG",
"live_stream_url": "https://live.us.shoplive.cloud/live/45-5WhDlPhrTUvioiwUb-ue2.m3u8"
}
],
"next_request_number": 1,
"session_id": "12de43d1-1ab2-427b-a447-660797b06a88"
}
}curl "https://api.crawlora.net/api/v1/ebay/live/streams" \
-H "x-api-key: $CRAWLORA_API_KEY"