Endpoint Playground
Test Crawlora's PSA ProBatFacts Gallery 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/probatfacts/gallery?subject_id=<subject_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| subject_id | string | Yes | Numeric subject id, from a psa-probatfacts-subjects result |
{
"code": 200,
"msg": "OK",
"data": {
"subject_id": "1490",
"name": "Hank Aaron",
"images": [
{
"image_url": "https://i.psacard.com/batfacts/Aaron(1B02343)-9635.jpg?h=1000",
"caption": "Hank Aaron Professional Model Bat (Career Home Run #521) - Cert# 1B02343"
},
{
"image_url": "https://i.psacard.com/batfacts/Aaron(1B04048)montage-9638.jpg?h=1000",
"caption": "Hank Aaron Professional Model 1957 All Star Game Bat - Cert# 1B04048"
}
],
"source_url": "https://www.psacard.com/probatfacts/subject/profile/images/1490"
}
}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 player's full exemplar image gallery: real, captioned examples of authenticated bats PSA keeps on file for this player, used as authentication reference material. subject_id is the numeric id from a psa-probatfacts-subjects result.
{
"code": 200,
"msg": "OK",
"data": {
"subject_id": "1490",
"name": "Hank Aaron",
"images": [
{
"image_url": "https://i.psacard.com/batfacts/Aaron(1B02343)-9635.jpg?h=1000",
"caption": "Hank Aaron Professional Model Bat (Career Home Run #521) - Cert# 1B02343"
},
{
"image_url": "https://i.psacard.com/batfacts/Aaron(1B04048)montage-9638.jpg?h=1000",
"caption": "Hank Aaron Professional Model 1957 All Star Game Bat - Cert# 1B04048"
}
],
"source_url": "https://www.psacard.com/probatfacts/subject/profile/images/1490"
}
}curl "https://api.crawlora.net/api/v1/psa/probatfacts/gallery?subject_id=<subject_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"