Endpoint Playground
Test Crawlora's Goldin 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/goldin/search?auction_type=Auction&sort=Featured" \
-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 search |
| keyword | string | No | Free-text search across lot titles/descriptions | |
| category | string | No | One value from goldin-categories' category field | |
| sub_category | string | No | One value from goldin-categories' sub_category field | |
| certification | string | No | One value from goldin-categories' certification field | |
| item_type | string | No | One value from goldin-categories' item_type field | |
| auction_id | string | No | One auction id from goldin-categories' auctions field -- only meaningful for auction_type Auction | |
| sort | string | No | Featured | One value from goldin-categories' own sort field for the same auction_type. Auction pool: Featured (default), Ending_Soonest, Highest_Bids, Lowest_Bids, Most_Bids, Least_Bids, Most_Recent_Bids, Highest_Lot_Number, Recently_Started. Fixed Price pool: Recently_Created (default), Highest_Bids, Lowest_Bids |
| page | integer | No | 1-based page number, defaults to 1 | |
| page_size | integer | No | Page size, defaults to 24, capped at 96 |
{
"code": 200,
"msg": "OK",
"data": {
"auction_type": "Auction",
"total": 5540,
"page": 1,
"lots": [
{
"slug": "2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys",
"lot_id": "202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6",
"auction_type": "Weekly",
"title": "2001-02 Upper Deck MJ Tributes MJ Milestones Autograph #M2 Michael Jordan Signed Card (#09/30) - PSA MINT 9",
"auction_id": "202603-0419-1022-71116570-6a20-4d1b-9fe7-100b3a3e50bf",
"status": "Live",
"current_price": 13499,
"buyer_premium": 22,
"image_url": "https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6/deb34feb-964d-4146-887e-ee7825e43183@1x",
"lot_number": 1000,
"min_bid_price": 10,
"number_of_bids": 70,
"start_time": "2026-09-08T22:00:00Z",
"end_time": "2026-09-18T02:00:00Z"
}
]
}
}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.
Browse or search Goldin's current lot inventory by free-text keyword, category, sub_category, certification, item_type, and auction_id, in a caller-selected sort order. Every filter is optional and combines with AND semantics. All enum values come from goldin-categories -- pass the matching auction_type to both. 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.
{
"code": 200,
"msg": "OK",
"data": {
"auction_type": "Auction",
"total": 5540,
"page": 1,
"lots": [
{
"slug": "2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys",
"lot_id": "202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6",
"auction_type": "Weekly",
"title": "2001-02 Upper Deck MJ Tributes MJ Milestones Autograph #M2 Michael Jordan Signed Card (#09/30) - PSA MINT 9",
"auction_id": "202603-0419-1022-71116570-6a20-4d1b-9fe7-100b3a3e50bf",
"status": "Live",
"current_price": 13499,
"buyer_premium": 22,
"image_url": "https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6/deb34feb-964d-4146-887e-ee7825e43183@1x",
"lot_number": 1000,
"min_bid_price": 10,
"number_of_bids": 70,
"start_time": "2026-09-08T22:00:00Z",
"end_time": "2026-09-18T02:00:00Z"
}
]
}
}curl "https://api.crawlora.net/api/v1/goldin/search" \
-H "x-api-key: $CRAWLORA_API_KEY"