Endpoint Playground
Test Crawlora's Pristine Auction lot detail 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/pristine-auction/lot/<lot_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| lot_number (path) | integer | Yes | A lot_number from pristine-auction-search's results |
{
"code": 200,
"msg": "OK",
"data": {
"lot_number": 13154611,
"title": "Mickey Mantle 1969 Topps #500 (PSA 8) (MC)",
"description": "Card has been graded PSA 8 (Miscut). Please see photos for more details on the condition of the card. (New York Yankees)",
"url": "https://www.pristineauction.com/a13154611",
"images": [
"https://images.pristineauction.com/449/4494947/1789064410-Mickey-Mantle-1969-Topps-500-PSA-8-MC-PristineAuction.com.jpg",
"https://images.pristineauction.com/449/4494947/1789064411-Mickey-Mantle-1969-Topps-500-PSA-8-MC-PristineAuction.com.jpg"
],
"sku": "LOT-13154611",
"price": 256.66,
"currency": "USD",
"availability": "InStock",
"ends_at": "2026-09-21T03:00:00-07:00",
"category": "trading-cards",
"auction_type": "CARD AUCTION",
"auction_type_url": "https://www.pristineauction.com/auction/type/sports-cards",
"no_reserve": true,
"total_views": 144,
"total_watching": 19,
"total_bids": 4
}
}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.
Returns one pristineauction.com lot's full detail: title, description, image gallery, price (current high bid, or realized/sold price once the auction has ended), auction end time, sport/collectible category, auction type, no-reserve flag, and view/watch/bid counts. lot_number comes from pristine-auction-search's results[].lot_number. Credential-free public data -- see the endpoint markdown for the transport used.
{
"code": 200,
"msg": "OK",
"data": {
"lot_number": 13154611,
"title": "Mickey Mantle 1969 Topps #500 (PSA 8) (MC)",
"description": "Card has been graded PSA 8 (Miscut). Please see photos for more details on the condition of the card. (New York Yankees)",
"url": "https://www.pristineauction.com/a13154611",
"images": [
"https://images.pristineauction.com/449/4494947/1789064410-Mickey-Mantle-1969-Topps-500-PSA-8-MC-PristineAuction.com.jpg",
"https://images.pristineauction.com/449/4494947/1789064411-Mickey-Mantle-1969-Topps-500-PSA-8-MC-PristineAuction.com.jpg"
],
"sku": "LOT-13154611",
"price": 256.66,
"currency": "USD",
"availability": "InStock",
"ends_at": "2026-09-21T03:00:00-07:00",
"category": "trading-cards",
"auction_type": "CARD AUCTION",
"auction_type_url": "https://www.pristineauction.com/auction/type/sports-cards",
"no_reserve": true,
"total_views": 144,
"total_watching": 19,
"total_bids": 4
}
}curl "https://api.crawlora.net/api/v1/pristine-auction/lot/<lot_number>" \
-H "x-api-key: $CRAWLORA_API_KEY"