Endpoint Playground
Test Crawlora's COMC categories 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/comc/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "Baseball",
"name": "Baseball Cards",
"kind": "sports"
},
{
"slug": "Football",
"name": "Football Cards",
"kind": "sports"
},
{
"slug": "Non-Sports",
"name": "Non-Sports Cards",
"kind": "trading"
},
{
"slug": "Star Wars",
"name": "Star Wars Cards",
"kind": "trading"
},
{
"slug": "Magic",
"name": "Magic: the Gathering",
"kind": "gaming"
},
{
"slug": "Comics",
"name": "Comic Books",
"kind": "comics"
}
]
}
}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 COMC's (comc.com) closed, top-level category/sport taxonomy -- the discovery endpoint for the search endpoint's `category` param. Every slug is the exact path segment comc.com's own site uses.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"slug": "Baseball",
"name": "Baseball Cards",
"kind": "sports"
},
{
"slug": "Football",
"name": "Football Cards",
"kind": "sports"
},
{
"slug": "Non-Sports",
"name": "Non-Sports Cards",
"kind": "trading"
},
{
"slug": "Star Wars",
"name": "Star Wars Cards",
"kind": "trading"
},
{
"slug": "Magic",
"name": "Magic: the Gathering",
"kind": "gaming"
},
{
"slug": "Comics",
"name": "Comic Books",
"kind": "comics"
}
]
}
}curl "https://api.crawlora.net/api/v1/comc/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"