lot_details
Pack: bonhams · Endpoint: https://gateway.pipeworx.io/bonhams/mcp
Full detail for one Bonhams lot: description, condition, images, realized price (hammer + buyer’s premium), estimate range, sale date. Needs the auction_id and lot_no from results_search (slug is optional — any slug works as long as auction_id/lot_no match).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
auction_id | string | yes | Auction id, e.g. “14786” (from results_search’s auction_id field). |
lot_no | string | yes | Lot number, e.g. “8416” (from results_search’s lot_no field). |
slug | string | no | Optional URL slug. Any value works; omit to use a placeholder. |
Example call
Arguments
{
"auction_id": "14786",
"lot_no": "8416"
}
curl
curl -X POST https://gateway.pipeworx.io/bonhams/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"lot_details","arguments":{"auction_id":"14786","lot_no":"8416"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('lot_details', {
"auction_id": "14786",
"lot_no": "8416"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"bonhams": {
"url": "https://gateway.pipeworx.io/bonhams/mcp"
}
}
}
See Getting Started for client-specific install steps.