Endpoint Playground
Test Crawlora's COMC card listing detail 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/listing?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| handle | string | Yes | Required. The handle from a comc_search result (or the equivalent comc.com card URL path). |
{
"code": 200,
"msg": "OK",
"data": {
"handle": "Cards/Football/2021/Panini_Absolute_-_Base_-_Red/36/Josh_Allen/17779360",
"year": "2021",
"set_description": "Panini Absolute - [Base] - Red",
"card_number": "36",
"subject": "Josh Allen",
"image_url": "https://img.comc.com/i/Football/2021/Panini-Absolute---Base---Red/36/Josh-Allen.jpg",
"total_listings": 2,
"parallels": [
{
"name": "[Base]",
"handle": "Cards/Football/2021/Panini_Absolute_-_Base/36/Josh_Allen/17777799",
"price": 1.29,
"for_sale_count": 34
},
{
"name": "Orange",
"handle": "Cards/Football/2021/Panini_Absolute_-_Base_-_Orange/36/Josh_Allen/17778525",
"sold_out": true
}
],
"listings": [
{
"item_id": 156183522,
"owner": "Severin",
"owner_url": "https://www.comc.com/Users/Severin",
"price": 1.04
},
{
"item_id": 156183600,
"owner": "crossroad",
"owner_url": "https://www.comc.com/Users/crossroad",
"price": 2.15
}
]
}
}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 one card+grade combination's full detail from COMC (comc.com): card identity and every seller's individual for-sale copy (owner, item id, price). handle is the value returned by comc_search's CardSummary.handle field (or the equivalent comc.com card URL path).
{
"code": 200,
"msg": "OK",
"data": {
"handle": "Cards/Football/2021/Panini_Absolute_-_Base_-_Red/36/Josh_Allen/17779360",
"year": "2021",
"set_description": "Panini Absolute - [Base] - Red",
"card_number": "36",
"subject": "Josh Allen",
"image_url": "https://img.comc.com/i/Football/2021/Panini-Absolute---Base---Red/36/Josh-Allen.jpg",
"total_listings": 2,
"parallels": [
{
"name": "[Base]",
"handle": "Cards/Football/2021/Panini_Absolute_-_Base/36/Josh_Allen/17777799",
"price": 1.29,
"for_sale_count": 34
},
{
"name": "Orange",
"handle": "Cards/Football/2021/Panini_Absolute_-_Base_-_Orange/36/Josh_Allen/17778525",
"sold_out": true
}
],
"listings": [
{
"item_id": 156183522,
"owner": "Severin",
"owner_url": "https://www.comc.com/Users/Severin",
"price": 1.04
},
{
"item_id": 156183600,
"owner": "crossroad",
"owner_url": "https://www.comc.com/Users/crossroad",
"price": 2.15
}
]
}
}curl "https://api.crawlora.net/api/v1/comc/listing?handle=<handle>" \
-H "x-api-key: $CRAWLORA_API_KEY"