Endpoint Playground
Test Crawlora's PSA CardFacts checklist 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/psa/cardfacts/checklist?set_id=<set_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| set_id | string | Yes | Numeric set id, from a psa-cardfacts-sets result |
{
"code": 200,
"msg": "OK",
"data": {
"set_id": "34071",
"total_cards": 661,
"has_checklist": true,
"cards": [
{
"name": "Shohei Ohtani",
"number": "1"
},
{
"name": "Craig Kimbrel",
"number": "2"
}
]
}
}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.
One set's full card checklist: every card's name and printed number (number is empty for sets PSA lists without one, e.g. many autograph/player-only card sets). set_id is the numeric id from a psa-cardfacts-sets result.
{
"code": 200,
"msg": "OK",
"data": {
"set_id": "34071",
"total_cards": 661,
"has_checklist": true,
"cards": [
{
"name": "Shohei Ohtani",
"number": "1"
},
{
"name": "Craig Kimbrel",
"number": "2"
}
]
}
}curl "https://api.crawlora.net/api/v1/psa/cardfacts/checklist?set_id=<set_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"