Endpoint Playground
Test Crawlora's Goldin categories 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/goldin/categories?auction_type=Auction" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| auction_type | string | No | Auction | Auction (default) or Fixed_Price -- selects which lot pool to discover enums for |
{
"code": 200,
"msg": "OK",
"data": {
"auction_type": "Auction",
"category": [
"Sport",
"Non-Sport",
"Oscar Alley Collection"
],
"sub_category": [
"Baseball",
"Basketball",
"Football"
],
"certification": [
"PSA",
"Ungraded",
"Beckett",
"Other",
"CGC",
"SGC",
"AMG",
"JSA",
"Multiple"
],
"item_type": [
"Single Cards",
"Memorabilia",
"Cases/Boxes/Packs"
],
"auctions": [
{
"id": "202605-0515-1956-e34eb08d-dad8-4f5d-8e0e-23494bffa363",
"name": "2026 Monthly Sports Elite #8",
"lot_count": 1519
}
],
"sort": [
"Featured",
"Ending_Soonest",
"Highest_Bids",
"Lowest_Bids",
"Most_Bids",
"Least_Bids",
"Most_Recent_Bids",
"Highest_Lot_Number",
"Recently_Started"
]
}
}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.
Goldin's full filter-enum surface for goldin-search, scoped to one lot pool -- category, sub_category, certification, item_type, and the live auction list (each with its own id, name, and current lot count), plus the sort enum valid for that pool. category/sub_category/certification/item_type are read live from Goldin's own current inventory, not a fixed taxonomy, so results can shift over time. The Auction pool (default) and the Fixed Price "Private Sales" marketplace are disjoint item pools with different certification/item_type values and different sort enums -- pass the same auction_type here and to goldin-search.
{
"code": 200,
"msg": "OK",
"data": {
"auction_type": "Auction",
"category": [
"Sport",
"Non-Sport",
"Oscar Alley Collection"
],
"sub_category": [
"Baseball",
"Basketball",
"Football"
],
"certification": [
"PSA",
"Ungraded",
"Beckett",
"Other",
"CGC",
"SGC",
"AMG",
"JSA",
"Multiple"
],
"item_type": [
"Single Cards",
"Memorabilia",
"Cases/Boxes/Packs"
],
"auctions": [
{
"id": "202605-0515-1956-e34eb08d-dad8-4f5d-8e0e-23494bffa363",
"name": "2026 Monthly Sports Elite #8",
"lot_count": 1519
}
],
"sort": [
"Featured",
"Ending_Soonest",
"Highest_Bids",
"Lowest_Bids",
"Most_Bids",
"Least_Bids",
"Most_Recent_Bids",
"Highest_Lot_Number",
"Recently_Started"
]
}
}curl "https://api.crawlora.net/api/v1/goldin/categories" \
-H "x-api-key: $CRAWLORA_API_KEY"