Endpoint Playground
Test Crawlora's Alt card search 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/alt/card-search" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | No | Free-text search across card name, subject, brand, and variety | |
| page | integer | No | 1-based page number, default 1 | |
| per_page | integer | No | Results per page, default 24, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "michael jordan",
"page": 1,
"per_page": 24,
"total": 18147,
"results": [
{
"asset_id": "6059088b-7daa-408c-923d-fdf1a9d94cbe",
"name": "1993 High School Heroes II Michael Jordan #12",
"subject": "Michael Jordan",
"year": 1993,
"brand": "High School Heroes II",
"card_number": "12",
"category": "NON-SPORT_CARDS",
"pop": 16,
"external_transaction_count": 12
}
]
}
}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.
Searches Alt's reference card-design catalog -- a canonical catalog of card designs (one entry per year/brand/subject/card-number/variety combination), separate from live listings or sales. Useful for finding a card design's asset_id (to feed into alt-asset for a population report and recent sales) without already having a live listing or sale that references it. Credential-free public data from Alt's own search backend.
{
"code": 200,
"msg": "OK",
"data": {
"query": "michael jordan",
"page": 1,
"per_page": 24,
"total": 18147,
"results": [
{
"asset_id": "6059088b-7daa-408c-923d-fdf1a9d94cbe",
"name": "1993 High School Heroes II Michael Jordan #12",
"subject": "Michael Jordan",
"year": 1993,
"brand": "High School Heroes II",
"card_number": "12",
"category": "NON-SPORT_CARDS",
"pop": 16,
"external_transaction_count": 12
}
]
}
}curl "https://api.crawlora.net/api/v1/alt/card-search" \
-H "x-api-key: $CRAWLORA_API_KEY"