@pipeworx/phillips
Connect: https://gateway.pipeworx.io/phillips/mcp · Install: one-click buttons
Tools: 2
Realized auction prices from Phillips — look up an artist or maker and get their recent past lots with the price actually paid (hammer plus buyer’s premium), the estimate range it sold against, currency, lot and sale number, saleroom, department and sale date; pull full detail for any single lot.
Tools
phillips_results_search(artist?, artist_id?, category?, include_upcoming?, limit?)— realized prices for one maker. Resolves the name against Phillips’ own artist index, then reads that maker’s artist page.categoryis a free-text filter matched against department, saleroom, sale number and lot title (e.g. “jewels”, “watches”, “editions”, “photographs”, “design”, “London”). Passartist_idfrom a previous result to skip name resolution entirely.phillips_lot_details(lot_id, slug?)— full detail for one lot, keyed by thelot_idaphillips_results_searchresult carries. Adds the hammer price (before premium) and the full sale name.
Tool names are house-prefixed on purpose. Bonhams shipped first with bare
results_search/lot_details; with three art houses live those two names
would collide across packs and ask_pipeworx routing would have nothing to
disambiguate on. New house packs should keep the {house}_ prefix.
Auth
Keyless. Public pages, no login required.
Data sources
Phillips’ keyword search is closed to crawlers — robots.txt (checked
2026-09-05) disallows /Search, /search AND /SEARCH, so all three case
variants of the obvious path are out, along with /bin/, /phillips/otis and
/*/filter/. This pack therefore does not search at all; it goes by maker,
through three paths robots.txt leaves open:
https://www.phillips.com/sitemap.xml— 13,031/artist/{makerId}/{name}URLs. This is the artist-name → makerId index names are resolved against. Fetched at most once per isolate. The names in it are percent-encoded AND HTML-escaped (Jennifer%20&%20Kevin%20McCoy); take both layers off before you use one, or the URL you build goes out double-encoded and 404s.https://www.phillips.com/artist/{makerId}/{slug}— the artist landing page. Realized prices are server-rendered here, and the same rows also ship as JSON in theReact.createElement(PhillipsReact.ArtistLanding, {...})hydration props: themakerprop is a JSON string holdingpastLots {currentPage, totalPages, totalCount, resultsPerPage, data[]}. Each row carrieshammerPlusBP(the realized price),lowEstimate,highEstimate,currencySign,saleNumber,lotNumber,objectNumber(the lot id) andauctionStartDateTimeOffset.hammerPlusBPis0for a lot that did not sell, which is an absent price, not a price of zero.https://www.phillips.com/detail/{slug}/{objectNumber}— the lot page.
The {slug} segment of both /artist/ and /detail/ URLs is decorative — any
non-empty value resolves the same record, only the numeric id is read.
Coverage ceiling, and why it is there
The artist page serves one page of past lots — 24 rows. Page 2 onward is
fetched by the browser from a different host (api.phillips.com), and there is
no query parameter that pages the HTML page itself (?page=2, ?p=2 and
?pastLotsPage=2 were each tried and all return page 1). So
phillips_results_search returns the 24 most recent past lots and reports
total_past_lots alongside them, so a caller can see how much archive it is
not seeing — Banksy returns 24 of 272, Patek Philippe 24 of 3,728.
Reading the lot page
The lot page is a different stack from the rest of the site (Remix; the state blob is a flattened key-then-value array, not an addressable object), so this pack reads it from three places and prefers the rendered HTML:
- JSON-LD
Product— title, maker, image, currency, sold/unsold. Noteoffers.priceis the low estimate, not a realized price; do not treat it as one. - Rendered HTML —
Sold For {cur}{amount}andEstimate {cur}{low}–{high}. The estimate MUST come from here: the onlylowEstimate/highEstimatepair in the state blob belongs to the page’s currency-conversion table, so reading it returns a plausible number in the wrong currency (HK$622,000–830,000 for a lot whose real estimate is £60,000–80,000). - State blob, for the two fields nothing else carries —
hammerPriceandauctionStartDateTime. Because key-to-value adjacency in a flattened array is not guaranteed, the hammer price is dropped rather than returned if it exceeds the realized price.
Sale numbers encode department and saleroom
A sale number is {2-letter saleroom}{2-digit department}{2-digit sequence}{2-digit year}
— UK010526 is London, department 01, sale 05, 2026. The department mapping
below was derived from, and agreed with, all 892 past auctions listed on
/auctions/past (2026-09-05): 01 Modern & Contemporary Art, 03 Editions &
Works on Paper, 04 Photographs, 05 Design, 06 Jewels, 07 Editions,
Photographs and Design, 08 Watches. 00 and 09 are not departments —
they are sale formats (special/collaboration, and online) that run across
departments — and are labelled as such rather than guessed at. Salerooms seen:
NY New York, UK London, HK Hong Kong, CH/GE Geneva.
Related packs
@pipeworx/bonhams and @pipeworx/sothebys cover the same question at the
other two houses. Christie’s is out of scope (closed, internal API).
Tools
- phillips_results_search — Look up realized prices for an artist or maker in Phillips’ past-auction results. Returns that maker’s most recent past lots with the realized price (hammer plus buyer’s premium), the estimate range i
- phillips_lot_details — Full detail for one Phillips lot: work title, maker, lot number, realized price (hammer plus buyer’s premium), hammer price, estimate range, currency, the sale it appeared in and its date, plus the ca
Tools
-
phillips_lot_details— Full detail for one Phillips lot: work title, maker, lot number, realized price (hammer plus buyer's premium), hammer price, estimate range, currency, the sale it appeared in and its date, plus the ca -
phillips_results_search— Look up realized prices for an artist or maker in Phillips' past-auction results. Returns that maker's most recent past lots with the realized price (hammer plus buyer's premium), the estimate range i