bonhams_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 bonhams_results_search (slug is optional — any slug works as long as auction_id/lot_no match).

Parameters

NameTypeRequiredDescription
auction_idstringyesAuction id, e.g. “14786” (from bonhams_results_search’s auction_id field).
lot_nostringyesLot number, e.g. “8416” (from bonhams_results_search’s lot_no field).
slugstringnoOptional 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":"bonhams_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('bonhams_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.

Regenerated from source · build September 5, 2026