Get Single Item

Retrieve a single item by ID.

GET /datatable-items/{id}
Example Request
GET /api/v1.0/datatable-items/345
Response
{
  "data": [{
    "id": "345",
    "label": "Item #1234",
    "lot": "1234",
    "description": "Beautiful antique vase from the Ming Dynasty",
    "sale": {
      "id": "456",
      "label": "Summer Auction 2025"
    },
    "consignment": {
      "id": "234",
      "symbol": "A",
      "sub_symbol": "1"
    },
    "category": {
      "id": "10",
      "label": "Ceramics"
    },
    "estimate_low": "100.00",
    "estimate_high": "200.00",
    "reserve_price": "80.00",
    "hammer_price": "250.00",
    "status": "sold",
    "winner": {
      "id": "123",
      "label": "John Doe",
      "bidder_number": "12345"
    },
    "images": [
      {
        "id": "1001",
        "url": "https://.../files/item-images/vase-1.jpg",
        "thumbnail": "https://.../files/item-images/vase-1-thumb.jpg"
      }
    ],
    "dimensions": {
      "height": "30cm",
      "width": "15cm",
      "depth": "15cm"
    },
    "created": "2025-09-01T10:00:00Z",
    "updated": "2025-10-15T14:30:00Z"
  }]
}
Back to Items Back to API Home