Pristine Auction API endpoint
Use Crawlora's Pristine Auction lot detail API to extract supported public Pristine Auction 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.
/pristine-auction/lot/{lot_number}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. 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 |
|---|---|---|---|---|---|
| lot_number (path) | integer | Yes | A lot_number from pristine-auction-search's results | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/pristine-auction/lot/%3Clot_number%3E" \ -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.
- `price` is the lot's current high bid, or its realized/sold price once the auction has ended — pristineauction.com's own product schema uses the same field for both states. - `ends_at` is RFC 3339, as reported by the upstream product schema. - `category` is a sport/collectible category slug, one value from `pristine-auction-categories`' `categories[].slug`. - `images[]` is the lot's full photo gallery (front, back, and any additional angles the seller provided), not just the one thumbnail `pristine-auction-search` returns. - An unknown `lot_number` returns a `404` not-found error. Example response: ```json { "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 } } ```
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": {
"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
}
}Request schema
No body schema
Response schema
#/definitions/pristineauction.lotDetailResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | pristineauction.LotDetailResponse | No | ||||
| data.auction_type | string | No | CARD AUCTION | |||
| data.auction_type_url | string | No | ||||
| data.availability | string | No | InStock | |||
| data.category | string | No | trading-cards | |||
| data.currency | string | No | USD | |||
| data.description | string | No | ||||
| data.ends_at | string | No | 2026-09-21T03:00:00-07:00 | |||
| data.images | array | No | ||||
| data.lot_number | integer | No | 13154611 | |||
| data.no_reserve | boolean | No | ||||
| data.price | number | No | 256.66 | |||
| data.sku | string | No | LOT-13154611 | |||
| data.title | string | No | Mickey Mantle 1969 Topps #500 (PSA 8) (MC) | |||
| data.total_bids | integer | No | ||||
| data.total_views | integer | No | ||||
| data.total_watching | integer | No | ||||
| data.url | string | No | https://www.pristineauction.com/a13154611 | |||
| 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/pristine-auction/lot/%3Clot_number%3E" \
-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