# fanatics-collect Fanatics Collect (ex-PWCC) sold results — weekly/premier auctions and fixed-price sales of sports cards, TCG and memorabilia. - **Discovery**: `/sitemap.xml` → `sitemap/sales-history-{weekly-auction,fixed-price}-N.xml.gz` (gzip url sets with `lastmod`, newest = highest N). - **Item pages**: `/weekly/`, `/fixed//` — the Next.js RSC payload carries `prefetchedItemData` (CollectListing) with `collectSales[{soldDate, soldFor}]`. - **Records**: `sale` only when `collectSales` is non-empty. `soldFor` includes the 20 % buyer's premium (`buyerPremiumIncluded: true` for auctions, hammer = `currentBid` in metadata). Fixed-price/best-offer → `saleType: fixed_price`, premium `null`. - **Cursor**: incremental `{ since }` (newest lastmod processed, newest-first walk); backfill `{ sitemap, offset, urlsDone }` oldest→newest with `ctx.progress`, ends with `{ done: true }`. - **Lookup**: item URLs are supported (`urlPatterns`). - Smoke: `set -a; . ./.env; set +a; pnpm tsx connectors/api/_g7-auctions-na-lib/smoke.ts api/fanatics-collect --limit 3`.