Entertainment merch (licensed, multi-store)
Licensed pop-culture and entertainment merch — a franchise, character or show, searched across Hot Topic and BoxLunch in parallel and returned as one list…
Licensed pop-culture and entertainment merch — a franchise, character or show, searched across Hot Topic and BoxLunch in parallel and returned as one list of priced SKUs, so an agent can answer 'where can I buy merch for X' without knowing which licensed-merch retailer carries it.
Also known as: kpop demon hunters, fan merch, licensed merch, pop culture merch, hot topic, hottopic, boxlunch, box lunch, funko pop, anime merch
Call it
bowmark.entertainment_merch.search(args: { query: string }): Promise<EntertainmentMerchSearchResult>Functions
| Function | What it does |
|---|---|
search | Searches Hot Topic and BoxLunch in parallel for a franchise/character/show and returns every matching SKU across both stores, each tagged with which store it's from. |
Types
type EntertainmentMerchOffer = {
store: "hottopic" | "boxlunch" // which retailer this offer is from
title: string // the product as the store lists it
price: number | null // USD; null if unpriced
url: string | null // product page for this SKU
image: string | null
color: string | null
size: string | null
availability: string | null // the store's own schema.org availability wording
}
type EntertainmentMerchSearchResult = {
results: EntertainmentMerchOffer[] // one row per SKU, across all stores
warnings: string[] // always present; names any store that did not answer
}
type CallOptions = {
timeoutMs?: number // per-provider budget in ms, default 30000, clamped to 1000-55000.
// A provider slower than this is DROPPED from the results and
// NAMED in warnings — never silently absent
}Examples
return await bowmark.entertainment_merch.search({ query: "rumi kpop demon hunters" });