sothebys_lot_details
Pack: sothebys · Endpoint: https://gateway.pipeworx.io/sothebys/mcp
Full detail for one Sotheby’s lot: catalogue description, provenance, literature, exhibition history, catalogue note, images, estimate range, and the realized price (including buyer’s premium) where Sotheby’s publishes it. Needs the lot_id from sothebys_results_search.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lot_id | string | yes | Lot UUID from sothebys_results_search’s lot_id field, e.g. “bca81c91-e36d-482c-a705-064e06671fb0”. |
Example call
Arguments
{
"lot_id": "f095f65a-5c2c-474a-8476-627d1a5bcb7e"
}
curl
curl -X POST https://gateway.pipeworx.io/sothebys/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"sothebys_lot_details","arguments":{"lot_id":"f095f65a-5c2c-474a-8476-627d1a5bcb7e"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('sothebys_lot_details', {
"lot_id": "f095f65a-5c2c-474a-8476-627d1a5bcb7e"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"sothebys": {
"url": "https://gateway.pipeworx.io/sothebys/mcp"
}
}
}
See Getting Started for client-specific install steps.