GET /v3/item/by-key/{itemKey} — item detail by key
const url = 'https://api-ha-prod-p8.handbid.dev/v3/item/by-key/silent-item-7';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/item/by-key/silent-item-7 \ --header 'Authorization: Bearer <token>'Lookup alias for web deep links (HAN-2597) — resolves items.key to an id and returns the same identity-free body as GET /v3/item/{id}, not a second shape. Scope with auctionKey/whitelabelKey.
Auth: optional Bearer (opportunistic).
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Example
silent-item-7Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”Item detail (same shape as /v3/item/{id}).
object
Example generated
{}Private event — invitation code required (private_event_pin_required); exchange it at the access route.
Unified error envelope. retryAfter is present only on transient (429 / 503) responses.
object
Stable machine-readable error code (e.g. unauthorized, forbidden, not_found, validation_error, unavailable).
Human-readable explanation.
Seconds to wait before retrying. Present on 429 and 503.
Example generated
{ "error": "example", "message": "example", "retryAfter": 1}Not found (unknown id/key, or a privacy-blocked auction — a 403 would assert existence).
Unified error envelope. retryAfter is present only on transient (429 / 503) responses.
object
Stable machine-readable error code (e.g. unauthorized, forbidden, not_found, validation_error, unavailable).
Human-readable explanation.
Seconds to wait before retrying. Present on 429 and 503.
Example generated
{ "error": "example", "message": "example", "retryAfter": 1}Rate limited; Retry-After seconds.
Unified error envelope. retryAfter is present only on transient (429 / 503) responses.
object
Stable machine-readable error code (e.g. unauthorized, forbidden, not_found, validation_error, unavailable).
Human-readable explanation.
Seconds to wait before retrying. Present on 429 and 503.
Example generated
{ "error": "example", "message": "example", "retryAfter": 1}