Endpoint Playground
Test Crawlora's Fanatics Live instant rips 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/fanaticslive/show/<id>/instant-rips" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Fanatics Live show id, the same id GET /fanaticslive/show/{id} takes |
{
"code": 200,
"msg": "OK",
"data": {
"show_id": "186f8cac-d031-436a-b46d-9d9f0b839df2",
"current_break": {
"id": "6fa239a8-448f-4d1f-8644-33bf2c0103c0",
"status": "READY",
"products": [
{
"product_id": "7b943498-443a-4a1b-bb11-5b81ad3ef3a3",
"is_digital": false
}
],
"spots": [
{
"id": "1492537a-fa25-493e-b573-5b485c4a3d42"
}
]
},
"channel_name": "Going Twice Pokemon",
"shop_name": "Going Twice"
}
}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 a Fanatics Live show's current break's digital-instant-rip state: spot claim/rip progress and the currently revealing item, when a rip is actively in progress. current_break is omitted when the show has no active break at request time. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"show_id": "186f8cac-d031-436a-b46d-9d9f0b839df2",
"current_break": {
"id": "6fa239a8-448f-4d1f-8644-33bf2c0103c0",
"status": "READY",
"products": [
{
"product_id": "7b943498-443a-4a1b-bb11-5b81ad3ef3a3",
"is_digital": false
}
],
"spots": [
{
"id": "1492537a-fa25-493e-b573-5b485c4a3d42"
}
]
},
"channel_name": "Going Twice Pokemon",
"shop_name": "Going Twice"
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/show/<id>/instant-rips" \
-H "x-api-key: $CRAWLORA_API_KEY"