Endpoint Playground
Test Crawlora's Goldin listing 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/listing?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | The lot's meta_slug, from a goldin-search result |
{
"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"
}
}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.
One 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).
{
"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"
}
}curl "https://api.crawlora.net/api/v1/goldin/listing?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"