Endpoint Playground
Test Crawlora's PSA Price Guide search 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/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | Free-text search term, e.g. a player/subject name or set name | |
| page | integer | No | One-based result page, default 1 | |
| page_size | integer | No | Results per page, default 50, max 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "griffey",
"page": 1,
"page_size": 10,
"total_count": 55,
"results": [
{
"set_id": 1239,
"set_name": "1974 Topps",
"category_name": "Baseball Card Values",
"category_path": "baseball-card-values",
"set_path": "1974-topps",
"items": [
{
"item_id": 47874,
"name": "Ken Griffey, Sr. (R)"
}
]
}
]
}
}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.
Searches PSA Price Guide by free text (a player/subject name or set name), matching PSA's own site search box. Each result is a matching set with the query's matching cards/items inside it; use a result's category_path, set_path and set_id as the input to psa-price-guide-set to fetch that set's full price table.
{
"code": 200,
"msg": "OK",
"data": {
"query": "griffey",
"page": 1,
"page_size": 10,
"total_count": 55,
"results": [
{
"set_id": 1239,
"set_name": "1974 Topps",
"category_name": "Baseball Card Values",
"category_path": "baseball-card-values",
"set_path": "1974-topps",
"items": [
{
"item_id": 47874,
"name": "Ken Griffey, Sr. (R)"
}
]
}
]
}
}curl "https://api.crawlora.net/api/v1/psa/price-guide/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"