Goldin API endpoint
Use Crawlora's Goldin listing 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/listingOne lot's full public detail: title, description, current bid/starting price, auction window and status, grading info, images, and prev/next lot pointers within the same auction. slug is the meta_slug from a goldin-search result (or the trailing path segment of the lot's own goldin.co/item/{slug} page URL). 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 |
|---|---|---|---|---|---|
| slug | string | Yes | The lot's meta_slug, from a goldin-search result | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/goldin/listing" \ -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.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `description` is plain text — Goldin's own HTML description is stripped of markup. - `grading_company` is present only for graded items (e.g. `PSA`); it is not the same enum as `goldin-search`'s `certification` filter, which also includes non-grader values like `Ungraded` and `Multiple`. - `images` are full URLs, ready to fetch directly. - `previous_lot`/`next_lot` are omitted when there is no neighboring lot (e.g. the first or last lot in an auction). - `allow_offers`, `sold_at`, and `final_price` are only present when `auction_type` is `Fixed_Price` (a lot from Goldin's Buy Now marketplace — see `goldin-search`'s `auction_type` parameter). - A `slug` Goldin cannot resolve returns `404`. Example response: ```json { "code": 200, "msg": "OK", "data": { "slug": "2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys", "lot_id": "202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6", "lot_number": 1000, "title": "2001-02 Upper Deck MJ Tributes MJ Milestones Autograph #M2 Michael Jordan Signed Card (#09/30) - PSA MINT 9", "description": "Graded MINT 9 by PSA (171523823). Hall of Famer. Only one higher-graded example of this piece has been confirmed in PSA's census reporting...", "auction_id": "202603-0419-1022-71116570-6a20-4d1b-9fe7-100b3a3e50bf", "auction_name": "2026 Weekly Auction Sep 8 - Sep 17", "auction_type": "Weekly", "status": "Live", "current_price": 13499, "min_bid_price": 10, "buyer_premium": 22, "number_of_bids": 70, "number_of_views": 2366, "category": "Sport", "sub_category": "Basketball", "item_type": "Single Cards", "grading_company": "PSA", "serial_number": "SF0000341944", "start_time": "2026-09-08T22:00:00Z", "end_time": "2026-09-18T02:00:00Z", "images": [ "https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6/deb34feb-964d-4146-887e-ee7825e43183@1x" ], "next_lot": { "slug": "2025-topps-chrome-chrome-legends-autograph-black-geometric-cla-tb-tomuw9hh", "lot_number": 1001 }, "source_url": "https://goldin.co/item/2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys" } } ```
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 |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys",
"lot_id": "202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6",
"lot_number": 1000,
"title": "2001-02 Upper Deck MJ Tributes MJ Milestones Autograph #M2 Michael Jordan Signed Card (#09/30) - PSA MINT 9",
"description": "Graded MINT 9 by PSA (171523823). Hall of Famer. Only one higher-graded example of this piece has been confirmed in PSA's census reporting...",
"auction_id": "202603-0419-1022-71116570-6a20-4d1b-9fe7-100b3a3e50bf",
"auction_name": "2026 Weekly Auction Sep 8 - Sep 17",
"auction_type": "Weekly",
"status": "Live",
"current_price": 13499,
"min_bid_price": 10,
"buyer_premium": 22,
"number_of_bids": 70,
"number_of_views": 2366,
"category": "Sport",
"sub_category": "Basketball",
"item_type": "Single Cards",
"grading_company": "PSA",
"serial_number": "SF0000341944",
"start_time": "2026-09-08T22:00:00Z",
"end_time": "2026-09-18T02:00:00Z",
"images": [
"https://d2tt46f3mh26nl.cloudfront.net/public/Lots/202607-2220-5302-10dbdf1f-31ef-4e7c-838c-979dd41926c6/deb34feb-964d-4146-887e-ee7825e43183@1x"
],
"next_lot": {
"slug": "2025-topps-chrome-chrome-legends-autograph-black-geometric-cla-tb-tomuw9hh",
"lot_number": 1001
},
"source_url": "https://goldin.co/item/2002-03-upper-deck-mj-tribute-michael-jordan-milestones-m2-michael-jor1lwys"
}
}Request schema
No body schema
Response schema
#/definitions/goldin.listingResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | goldin.ListingResult | No | ||||
| data.allow_offers | boolean | No | AllowOffers, SoldAt, and FinalPrice are only present for AuctionType "Fixed_Price" lots (Goldin's Buy Now marketplace). | |||
| data.auction_id | string | No | ||||
| data.auction_name | string | No | ||||
| data.auction_type | string | No | ||||
| data.buyer_premium | number | No | ||||
| data.category | string | No | ||||
| data.current_price | integer | No | ||||
| data.description | string | No | ||||
| data.end_time | string | No | ||||
| data.final_price | integer | No | ||||
| data.grading_company | string | No | GradingCompany is the third-party grader, e.g. "PSA" -- present only for graded items. Not the same enum as Search's certification filter, which also includes "Ungraded". | |||
| data.images | array | No | ||||
| data.item_type | string | No | ||||
| data.lot_id | string | No | ||||
| data.lot_number | integer | No | ||||
| data.min_bid_price | integer | No | ||||
| data.next_lot | goldin.ListingLotRef | No | ||||
| data.next_lot.lot_number | integer | No | ||||
| data.next_lot.slug | string | No | ||||
| data.number_of_bids | integer | No | ||||
| data.number_of_views | integer | No | ||||
| data.previous_lot | goldin.ListingLotRef | No | ||||
| data.previous_lot.lot_number | integer | No | ||||
| data.previous_lot.slug | string | No | ||||
| data.reserve_amount | number | No | ||||
| data.serial_number | string | No | ||||
| data.slug | string | No | ||||
| data.sold_at | string | No | ||||
| data.source_url | string | No | ||||
| data.start_time | string | No | ||||
| data.status | string | No | ||||
| data.sub_category | string | No | ||||
| data.title | string | 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/listing" \
-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