Get Single Order
Retrieve detailed information for a specific order by ID.
GET
/orders/{id}
Example Request
GET /api/v1.0/orders/789
Response
{
"data": [{
"id": "789",
"order_id": "12345",
"type": "bidder",
"status": {
"id": "new",
"label": "New"
},
"sale": {...},
"owner": {...},
"invoice_data": {
"header_left": {
"buyer_address": {...},
"shipping_address": {...}
},
"header_right": {
"invoice_number": "12345",
"customer_number": "C12345",
"bidder_number": "12345",
"vat_number": "123-45-6789"
},
"items": {
"12345": [
{
"nid": "345",
"lot": "1234",
"description": "Beautiful antique vase",
"hammer_price": "250.00",
"commission": "50.00",
"tax_id": "6",
"consignment_number": "A-100"
}
]
},
"totals_for_display": [
[
{"label": "Subtotal", "value": "$1,000.00"},
{"label": "Buyer's Premium", "value": "$200.00"}
],
[
{"label": "Tax", "value": "$50.00"},
{"label": "Grand Total", "value": "$1,250.00"}
]
]
},
"additional_charges": [
{
"term": {
"id": "5",
"label": "Shipping Fee"
},
"amount": "25.00",
"tax": "21.00",
"description": "Standard shipping",
"date": "2025-10-01"
}
],
...
}]
}