Endpoint Playground
Test Crawlora's Fanatics Collect 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/fanaticscollect/instant-rips/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "92c2820e-3248-4b02-a4cc-6e32ee0e7660",
"name": "Collector Packs",
"min_price": {
"amount": 10,
"currency": "USD"
},
"max_price": {
"amount": 100,
"currency": "USD"
},
"url": "https://www.fanaticscollect.com/instant-rips/92c2820e-3248-4b02-a4cc-6e32ee0e7660"
},
{
"id": "fc95e786-496d-4ee5-8e19-37d8bfd44723",
"name": "Football",
"min_price": {
"amount": 150,
"currency": "USD"
},
"max_price": {
"amount": 1000,
"currency": "USD"
},
"url": "https://www.fanaticscollect.com/instant-rips/fc95e786-496d-4ee5-8e19-37d8bfd44723"
}
]
}
}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 every category Fanatics Collect's "Instant Rips" mystery-pack product (fanaticscollect.com/instant-rips) currently advertises on its homepage: id, name, and price range. Instant Rips is a "buy a randomized pack, a real graded card is revealed" product; each category's id is a real listing id, fetchable through GetListing with type=FIXED for that entry point's own full detail. This does not cover the individual pack-tier tiles within a category or the homepage's "Recently ripped" live feed -- both are hydrated client-side in a form this repo cannot reliably parse. Credential-free public data, server-rendered on Fanatics Collect's own page.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": "92c2820e-3248-4b02-a4cc-6e32ee0e7660",
"name": "Collector Packs",
"min_price": {
"amount": 10,
"currency": "USD"
},
"max_price": {
"amount": 100,
"currency": "USD"
},
"url": "https://www.fanaticscollect.com/instant-rips/92c2820e-3248-4b02-a4cc-6e32ee0e7660"
},
{
"id": "fc95e786-496d-4ee5-8e19-37d8bfd44723",
"name": "Football",
"min_price": {
"amount": 150,
"currency": "USD"
},
"max_price": {
"amount": 1000,
"currency": "USD"
},
"url": "https://www.fanaticscollect.com/instant-rips/fc95e786-496d-4ee5-8e19-37d8bfd44723"
}
]
}
}curl "https://api.crawlora.net/api/v1/fanaticscollect/instant-rips/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"