Endpoint Playground
Test Crawlora's Bonhams Auction 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/auctions/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Bonhams auction id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "32001",
"title": "Home & Interiors: including the Linton Collection",
"slug": "home-and-interiors-including-the-linton-collection",
"url": "https://www.bonhams.com/auction/32001/home-and-interiors-including-the-linton-collection/",
"brand": "bonhams",
"auction_type": "ONLINE",
"auction_status": "READY",
"bidding_status": "IP",
"categories": [
{
"code": "CAT-DEC",
"name": "Decorative Arts & Furniture"
}
],
"departments": [
{
"code": "SIL",
"name": "Silver"
}
],
"country": {
"code": "AU",
"name": "Australia"
},
"region": {
"code": "ASIA_PACIFIC",
"name": "Asia Pacific"
},
"currency": {
"iso_code": "AUD",
"bonhams_code": "AU$"
},
"end_date": {
"datetime": "2026-09-03T04:00:00+00:00",
"timestamp": 1788408000
},
"month": "September",
"month_and_year": "September 2026",
"year": "2026",
"lot_count": 58,
"image_url": "https://images3.bonhams.com/image?src=Images/live/2026-08/01/x.jpg",
"is_auction_ended": false,
"is_exhibition": 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 auction's normalized facts by id: title, category, department, country, currency, sale dates, and lot count. Unlike the search endpoint, this is not restricted to upcoming/live auctions -- a historical/ended auction id resolves too. Credential-free public data from bonhams.com's own search API.
{
"code": 200,
"msg": "OK",
"data": {
"id": "32001",
"title": "Home & Interiors: including the Linton Collection",
"slug": "home-and-interiors-including-the-linton-collection",
"url": "https://www.bonhams.com/auction/32001/home-and-interiors-including-the-linton-collection/",
"brand": "bonhams",
"auction_type": "ONLINE",
"auction_status": "READY",
"bidding_status": "IP",
"categories": [
{
"code": "CAT-DEC",
"name": "Decorative Arts & Furniture"
}
],
"departments": [
{
"code": "SIL",
"name": "Silver"
}
],
"country": {
"code": "AU",
"name": "Australia"
},
"region": {
"code": "ASIA_PACIFIC",
"name": "Asia Pacific"
},
"currency": {
"iso_code": "AUD",
"bonhams_code": "AU$"
},
"end_date": {
"datetime": "2026-09-03T04:00:00+00:00",
"timestamp": 1788408000
},
"month": "September",
"month_and_year": "September 2026",
"year": "2026",
"lot_count": 58,
"image_url": "https://images3.bonhams.com/image?src=Images/live/2026-08/01/x.jpg",
"is_auction_ended": false,
"is_exhibition": false
}
}curl "https://api.crawlora.net/api/v1/bonhams/auctions/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"