Endpoint Playground
Test Crawlora's Bonhams 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/bonhams/lots/<auctionId>/<lotNumber>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| auctionId (path) | string | Yes | Bonhams auction id | |
| lotNumber (path) | string | Yes | Bonhams lot number |
{
"code": 200,
"msg": "OK",
"data": {
"id": "32001-2",
"auction_id": "32001",
"lot_number": "2",
"title": "A pair of Scandanavian silver three-branch candelabra",
"status": "NEW",
"department": {
"code": "ORI-CHI",
"name": "Chinese Ceramics & Works of Art"
},
"country": {
"code": "AU",
"name": "Australia"
},
"currency": {
"iso_code": "AUD",
"bonhams_code": "AU$",
"symbol": "AU$"
},
"estimate_low": 800,
"estimate_high": 1200,
"starting_bid_amount": 800,
"hammer_price": 0,
"sale_date": {
"datetime": "2026-09-03T04:01:00+00:00",
"timestamp": 1788408060,
"timezone": "Australia/Sydney"
},
"auction_type": "ONLINE",
"auction_status": "READY",
"auction_bidding_status": "IP",
"slug": "a-pair-of-scandanavian-silver-three-branch-candelabra",
"url": "https://www.bonhams.com/auction/32001/lot/2/a-pair-of-scandanavian-silver-three-branch-candelabra/",
"without_reserve": false,
"condition_report_available": false
}
}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 Bonhams lot's normalized facts: title, estimate range, hammer/realized price (once sold), sale date, category, department, and lot number. Full lot description prose, condition-report text, and additional images are not reproduced -- see the response fields. Credential-free public data from bonhams.com's own search API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "32001-2",
"auction_id": "32001",
"lot_number": "2",
"title": "A pair of Scandanavian silver three-branch candelabra",
"status": "NEW",
"department": {
"code": "ORI-CHI",
"name": "Chinese Ceramics & Works of Art"
},
"country": {
"code": "AU",
"name": "Australia"
},
"currency": {
"iso_code": "AUD",
"bonhams_code": "AU$",
"symbol": "AU$"
},
"estimate_low": 800,
"estimate_high": 1200,
"starting_bid_amount": 800,
"hammer_price": 0,
"sale_date": {
"datetime": "2026-09-03T04:01:00+00:00",
"timestamp": 1788408060,
"timezone": "Australia/Sydney"
},
"auction_type": "ONLINE",
"auction_status": "READY",
"auction_bidding_status": "IP",
"slug": "a-pair-of-scandanavian-silver-three-branch-candelabra",
"url": "https://www.bonhams.com/auction/32001/lot/2/a-pair-of-scandanavian-silver-three-branch-candelabra/",
"without_reserve": false,
"condition_report_available": false
}
}curl "https://api.crawlora.net/api/v1/bonhams/lots/<auctionId>/<lotNumber>" \
-H "x-api-key: $CRAWLORA_API_KEY"