Goldin API endpoint
Use Crawlora's Goldin search API to extract supported public Goldin data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/goldin/searchBrowse 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. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| auction_type | string | No | Auction (default) or Fixed_Price -- selects which lot pool to search Allowed values: Auction, Fixed_Price | ||
| 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 | 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 Allowed values: Featured, Ending_Soonest, Highest_Bids, Lowest_Bids, Most_Bids, Least_Bids, Most_Recent_Bids, Highest_Lot_Number, Recently_Started, Recently_Created | ||
| page | integer | No | 1 | 1-based page number, defaults to 1 | |
| page_size | integer | No | 24 | Page size, defaults to 24, capped at 96 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/goldin/search?auction_type=Auction&keyword=coffee&sort=Featured&page=1" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- Every filter is optional and combines with AND semantics. - A query with genuinely zero matches returns a well-formed empty `lots` array rather than an error. - `slug` in each result is the lot's `meta_slug` — pass it as `slug` to `goldin-listing` for that lot's full detail. - `lot_number`, `min_bid_price`, `number_of_bids`, `reserve_amount`, `start_time`, and `end_time` are only present for `auction_type=Auction` results — omitted entirely for `auction_type=Fixed_Price`, which has no lot numbering, bidding, or auction window. - `allow_offers`, `sold_at`, and `final_price` are only present for `auction_type=Fixed_Price` results. Example response (`auction_type=Auction`, the default): ```json { "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.0, "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" } ] } } ``` Example response (`auction_type=Fixed_Price`): ```json { "code": 200, "msg": "OK", "data": { "auction_type": "Fixed_Price", "total": 148, "page": 1, "lots": [ { "slug": "2020-21-panini-prizm-premier-league-black-prizm-164-heung-min-son-1-1idgya", "lot_id": "202608-2117-4549-629d9881-2adf-452f-8725-8231ba02e701", "auction_type": "Fixed_Price", "title": "2020-21 Panini Prizm Premier League Black Prizm #164 Heung-Min Son (#1/1) - PSA GEM MT 10", "auction_id": "fixed_price_marketplace", "status": "Live", "current_price": 18000, "buyer_premium": 0, "image_url": "https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202608-2117-4549-629d9881-2adf-452f-8725-8231ba02e701/6b2b18d5-cf5c-4d0e-8faa-7e51de8d1830@1x", "allow_offers": true } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/goldin.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | goldin.SearchResponse | No | ||||
| data.auction_type | string | No | ||||
| data.lots | array | No | ||||
| data.lots[].allow_offers | boolean | No | AllowOffers, SoldAt, and FinalPrice are only present for AuctionTypeFixedPrice lots. | |||
| data.lots[].auction_id | string | No | ||||
| data.lots[].auction_type | string | No | ||||
| data.lots[].buyer_premium | number | No | ||||
| data.lots[].current_price | integer | No | CurrentPrice is the current bid (AuctionTypeAuction) or the Buy Now price (AuctionTypeFixedPrice) -- always present regardless of pool. | |||
| data.lots[].end_time | string | No | ||||
| data.lots[].final_price | integer | No | ||||
| data.lots[].image_url | string | No | ||||
| data.lots[].lot_id | string | No | ||||
| data.lots[].lot_number | integer | No | LotNumber, MinBidPrice, NumberOfBids, ReserveAmount, StartTime, and EndTime are only present for AuctionTypeAuction lots -- omitted (not just zero) for AuctionTypeFixedPrice, which has no lot numbering, bidding, or auction window. | |||
| data.lots[].min_bid_price | integer | No | ||||
| data.lots[].number_of_bids | integer | No | ||||
| data.lots[].reserve_amount | number | No | ||||
| data.lots[].slug | string | No | Slug is the lot's meta_slug -- pass as slug to goldin-listing for full lot detail. | |||
| data.lots[].sold_at | string | No | ||||
| data.lots[].start_time | string | No | ||||
| data.lots[].status | string | No | ||||
| data.lots[].title | string | No | ||||
| data.page | integer | No | ||||
| data.total | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/goldin/search?auction_type=Auction&keyword=coffee&sort=Featured&page=1" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms