Endpoint Playground
Test Crawlora's PSA certification verification 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/cert-lookup?cert_number=<cert_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| cert_number | string | Yes | PSA certification number, numeric, e.g. \ |
{
"code": 200,
"msg": "OK",
"data": {
"cert_number": "125866845",
"title": "2003 POKEMON SKYRIDGE #146 CHARIZARD-HOLO",
"item_grade": "GEM MT 10",
"label_type": "w/ Fugitive Ink Technology",
"reverse_cert_barcode": true,
"year": "2003",
"brand_title": "POKEMON SKYRIDGE",
"subject": "CHARIZARD-HOLO",
"card_number": "146",
"category": "TCG Cards",
"psa_estimate": "$135,624.00",
"psa_population": 248,
"psa_population_url": "https://www.psacard.com/pop/tcg-cards/2003/pokemon-skyridge/62300",
"psa_pop_higher": 0,
"set_registry_note": "This cert does not appear in any sets.",
"source_url": "https://www.psacard.com/cert/125866845/psa"
}
}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.
Looks up PSA's own public Cert Verification record for one PSA-graded card by its certification number: item title, grade, label type, reverse cert/barcode flag, year, brand/title, subject, card number, category, PSA's own price estimate, and this-cert's-own population figures (population for this exact card+grade, and pop-higher). Scoped to PSA's trading-card department; a cert number issued under a different PSA division (autographs, tickets) returns a not-found error. PSA's full Population Report and Auction Prices Realized both require a PSA/Collectors account login and are not available through this endpoint.
{
"code": 200,
"msg": "OK",
"data": {
"cert_number": "125866845",
"title": "2003 POKEMON SKYRIDGE #146 CHARIZARD-HOLO",
"item_grade": "GEM MT 10",
"label_type": "w/ Fugitive Ink Technology",
"reverse_cert_barcode": true,
"year": "2003",
"brand_title": "POKEMON SKYRIDGE",
"subject": "CHARIZARD-HOLO",
"card_number": "146",
"category": "TCG Cards",
"psa_estimate": "$135,624.00",
"psa_population": 248,
"psa_population_url": "https://www.psacard.com/pop/tcg-cards/2003/pokemon-skyridge/62300",
"psa_pop_higher": 0,
"set_registry_note": "This cert does not appear in any sets.",
"source_url": "https://www.psacard.com/cert/125866845/psa"
}
}curl "https://api.crawlora.net/api/v1/psa/cert-lookup?cert_number=<cert_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"