Endpoint Playground
Test Crawlora's PSA AutographFacts 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/autographfacts/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-autographfacts-subjects result |
{
"code": 200,
"msg": "OK",
"data": {
"subject_id": "1",
"name": "Hank Aaron",
"images": [
{
"image_url": "https://i.psacard.com/autographfacts/hank-aaron-signed-photo-31.jpg?h=1000",
"caption": "Hank Aaron Signed Photo"
},
{
"image_url": "https://i.psacard.com/autographfacts/hank-aaron-sadaharu-oh-signed-photo-34.jpg?h=1000",
"caption": "Hank Aaron, Sadaharu Oh Signed Photo"
}
],
"source_url": "https://www.psacard.com/autographfacts/subject/profile/images/1"
}
}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 autograph subject's full exemplar image gallery: real, captioned examples of authenticated signed items PSA keeps on file for this subject (signed photos, cards, baseballs, letters, contracts, and more), used as authentication reference material. subject_id is the numeric id from a psa-autographfacts-subjects result.
{
"code": 200,
"msg": "OK",
"data": {
"subject_id": "1",
"name": "Hank Aaron",
"images": [
{
"image_url": "https://i.psacard.com/autographfacts/hank-aaron-signed-photo-31.jpg?h=1000",
"caption": "Hank Aaron Signed Photo"
},
{
"image_url": "https://i.psacard.com/autographfacts/hank-aaron-sadaharu-oh-signed-photo-34.jpg?h=1000",
"caption": "Hank Aaron, Sadaharu Oh Signed Photo"
}
],
"source_url": "https://www.psacard.com/autographfacts/subject/profile/images/1"
}
}curl "https://api.crawlora.net/api/v1/psa/autographfacts/gallery?subject_id=<subject_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"