Endpoint Playground
Test Crawlora's Fanatics Live shop 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/shop/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Fanatics Live shop slug, e.g. from a shops-list result's slug field |
{
"code": 200,
"msg": "OK",
"data": {
"id": "8ee6cf3e-96c9-420b-9129-9b4b36c3727f",
"name": "WeTheHobby",
"slug": "we-the-hobby",
"description": "WeTheHobby global sports card entertainment company - bringing you the best sports cards & live breaks in the hobby!",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/shops/8ee6cf3e-96c9-420b-9129-9b4b36c3727f/logo.png?auto=compress",
"country": "US",
"follower_count": 85378,
"links": {
"instagram": "https://www.instagram.com/wethehobby",
"web": "https://wethehobby.com/",
"x": "https://twitter.com/WeTheHobby"
},
"channels": [
{
"id": "29a128bc-98ce-435f-9a5b-f122c779626e",
"name": "WeTheHobby Pokemon"
}
],
"staffers": [
{
"id": "8fdedd5e-e6fc-4f6f-89f9-2e8da9d90082",
"username": "wethehobbyzach"
}
]
}
}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 shop's public profile page: description, social links, follower count, and its channels and staffers. Public data sourced from Fanatics Live's own GraphQL API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "8ee6cf3e-96c9-420b-9129-9b4b36c3727f",
"name": "WeTheHobby",
"slug": "we-the-hobby",
"description": "WeTheHobby global sports card entertainment company - bringing you the best sports cards & live breaks in the hobby!",
"logo_url": "https://d10w40ipypj16l.cloudfront.net/shops/8ee6cf3e-96c9-420b-9129-9b4b36c3727f/logo.png?auto=compress",
"country": "US",
"follower_count": 85378,
"links": {
"instagram": "https://www.instagram.com/wethehobby",
"web": "https://wethehobby.com/",
"x": "https://twitter.com/WeTheHobby"
},
"channels": [
{
"id": "29a128bc-98ce-435f-9a5b-f122c779626e",
"name": "WeTheHobby Pokemon"
}
],
"staffers": [
{
"id": "8fdedd5e-e6fc-4f6f-89f9-2e8da9d90082",
"username": "wethehobbyzach"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticslive/shop/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"