GET /v3/auction/:id/items — subsequent page
const url = 'https://api-ha-prod-p8.handbid.dev/v3/auction/example/items?limit=20&offset=20&manager=true&search=trophy';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api-ha-prod-p8.handbid.dev/v3/auction/example/items?limit=20&offset=20&manager=true&search=trophy' \ --header 'Authorization: Bearer <token>'NEW (HAN-1685). offset > 0 returns ONLY {auctionStatus, endTime, items, totalCount} — no categories[] and no featuredItems[] (those don’t change between pages, so subsequent pages skip them to save bandwidth).
auctionStatus + endTime ride along on every page so the client can detect staleness without a separate auction-state poll.
Item-card shape (including the new controlMode field from HAN-1907) is identical to the first-page response.
Manager view (HAN-2131): pass manager=1 to include items for your own test and draft (setup-status) auctions, which the public catalog otherwise hides. Authorization is enforced server-side from the Bearer token — see the manager parameter — so non-managers (or anonymous callers) always get the public result; the flag alone grants nothing.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Query Parameters
Section titled “Query Parameters ”Example
20Example
20Manager view. Set manager=1 to include items for your own test and draft (setup-status) auctions, which the public catalog hides. Authorization-gated server-side: honored only when the Bearer token belongs to a Handbid admin or a manager of the auction’s organization — any other caller (or none) receives the normal public result. The flag alone grants nothing.
Example
trueNEW (HAN-2399). Optional keyword. Case/accent-insensitive substring over the item’s name, itemCode, and description; apostrophe-variant tolerant (straight ’ matches curly U+2019 and vice versa). % and _ are matched literally. Filters both the items list and totalCount, and composes with categoryId/limit/offset. 1-80 characters (else 400 validation_error). Omitting it preserves current behavior.
Example
trophyResponses
Section titled “ Responses ”Successful response