Endpoint Playground
Test Crawlora's PSA CardFacts 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/psa/cardfacts/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"No request parameters
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 13,
"name": "Baseball"
},
{
"id": 3,
"name": "Basketball"
},
{
"id": 4,
"name": "Boxing"
},
{
"id": 5,
"name": "Football"
},
{
"id": 6,
"name": "Golf"
},
{
"id": 1,
"name": "Hockey"
},
{
"id": 10,
"name": "Misc Sports"
},
{
"id": 16,
"name": "Multi-Sport"
},
{
"id": 7,
"name": "Non-Sports/TCG"
}
]
}
}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.
PSA CardFacts' full category list -- the discovery endpoint for the category_id parameter used to browse sets. Nine categories: Baseball, Basketball, Boxing, Football, Golf, Hockey, Misc Sports, Multi-Sport, and Non-Sports/TCG.
{
"code": 200,
"msg": "OK",
"data": {
"categories": [
{
"id": 13,
"name": "Baseball"
},
{
"id": 3,
"name": "Basketball"
},
{
"id": 4,
"name": "Boxing"
},
{
"id": 5,
"name": "Football"
},
{
"id": 6,
"name": "Golf"
},
{
"id": 1,
"name": "Hockey"
},
{
"id": 10,
"name": "Misc Sports"
},
{
"id": 16,
"name": "Multi-Sport"
},
{
"id": 7,
"name": "Non-Sports/TCG"
}
]
}
}curl "https://api.crawlora.net/api/v1/psa/cardfacts/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"