Get Single Sale
Retrieve detailed information about a specific sale/auction.
GET
/datatable-sales/{id}
Path Parameters
| Parameter | Type | Description |
|---|---|---|
id |
string | Sale ID |
Example Request
GET /api/v1.0/datatable-sales/456
Response
{
"data": [{
"id": "456",
"label": "Summer Auction 2025",
"sale_date": "2025-06-15T19:00:00Z",
"status": "published",
"catalog": {
"id": "78",
"label": "Summer 2025 Catalog"
},
"item_count": 250,
"consignment_count": 15,
"total_estimates": "250000.00",
"total_hammer_price": "280000.00",
"lots_locked": false,
"venue": "Main Auction House",
"created": "2025-03-01T10:00:00Z"
}]
}