Endpoint Playground
Test Crawlora's PSA Price Guide set price table 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/price-guide/set?category_path=<category_path>&set_path=<set_path>&set_id=<set_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| category_path | string | Yes | Category URL path segment, from psa-price-guide-categories or a psa-price-guide-search result | |
| set_path | string | Yes | Set URL path segment, from a psa-price-guide-search result | |
| set_id | string | Yes | PSA's own numeric set id, from a psa-price-guide-search result |
{
"code": 200,
"msg": "OK",
"data": {
"set_id": "1239",
"title": "1974 Topps",
"grades": [
"NM 7",
"NM-MT 8",
"MT 9",
"GEM-MT 10"
],
"cards": [
{
"description": "Commons 1-660",
"prices": {
"NM 7": "2",
"NM-MT 8": "4",
"MT 9": "8",
"GEM-MT 10": "65"
}
},
{
"description": "Ken Griffey, Sr. (R)",
"card_number": "598",
"item_id": 47874,
"prices": {
"NM 7": "35+",
"NM-MT 8": "60+",
"MT 9": "150+",
"GEM-MT 10": "1,770+"
}
}
],
"source_url": "https://www.psacard.com/priceguide/baseball-card-values/1974-topps/1239"
}
}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.
Fetches one PSA Price Guide set's full grade-by-grade price table: every card in the set with PSA's own formatted price per grade column (the set's own grade columns vary -- a vintage set may carry more/lower grade tiers than a modern one). category_path, set_path and set_id together identify the set; use the matching fields from a psa-price-guide-search result, or category_path from psa-price-guide-categories combined with a set_path/set_id found by browsing PSA's own category page.
{
"code": 200,
"msg": "OK",
"data": {
"set_id": "1239",
"title": "1974 Topps",
"grades": [
"NM 7",
"NM-MT 8",
"MT 9",
"GEM-MT 10"
],
"cards": [
{
"description": "Commons 1-660",
"prices": {
"NM 7": "2",
"NM-MT 8": "4",
"MT 9": "8",
"GEM-MT 10": "65"
}
},
{
"description": "Ken Griffey, Sr. (R)",
"card_number": "598",
"item_id": 47874,
"prices": {
"NM 7": "35+",
"NM-MT 8": "60+",
"MT 9": "150+",
"GEM-MT 10": "1,770+"
}
}
],
"source_url": "https://www.psacard.com/priceguide/baseball-card-values/1974-topps/1239"
}
}curl "https://api.crawlora.net/api/v1/psa/price-guide/set?category_path=<category_path>&set_path=<set_path>&set_id=<set_id>" \
-H "x-api-key: $CRAWLORA_API_KEY"