# TablePulse Deal Watch — Board Game Pricing & Deal Tracker

> TablePulse Deal Watch — Board Game Pricing & Deal Tracker is a paid API for AI agents from tablepulse.theaslangroupllc.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns MSRP vs. current street price comparisons, deal timing guidance, holiday price cycles, and Kickstarter-vs-retail cost analysis for board games across UK, DE, US, and Nordic retailers via BoardGamePrices.co.uk.

## Facts

- Endpoint: GET https://tablepulse.theaslangroupllc.com/api/table/deal-watch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tablepulse-deal-watch-board-game-pricing-deal-tracker-7f70e586
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lJxnGZJZpA8NA9ecHti0R

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability tablepulse-deal-watch-board-game-pricing-deal-tracker-7f70e586
```

Example prompt: Check the current street price vs MSRP for Wingspan across UK and US retailers, and tell me whether now is a good time to buy or if I should wait for a holiday sale — also let me know how that compares to backing it on Kickstarter if there's an active campaign.

## When to prefer this

Use this endpoint when you need current multi-retailer price comparisons with regional coverage (UK/DE/US/Nordics) and deal timing intelligence for board games. Prefer this over generic shopping APIs when the user wants board-game-specific context like holiday pricing cycles or Kickstarter-vs-retail math. Use the sibling collection-valuation endpoint instead if the user cares about out-of-print premiums or resale value.

## Known failure modes

- Game title not found in BoardGamePrices.co.uk database — returns empty or no-match result
- Region not supported — only UK, DE, US, and Nordic markets are covered
- Kickstarter campaign not yet indexed or campaign has ended — crowdfunding comparison unavailable
- Stale pricing data if retailer feeds have not updated recently
- Ambiguous game title matching multiple products — may return wrong game's pricing

## How this service works

Board-game pricing guidance — MSRP vs street price, when/where deals happen, holiday cycles, and Kickstarter-vs-retail math. Uses the real BoardGamePrices.co.uk multi-retailer API (UK/DE/US/Nordics coverage), never BoardGameGeek data.

## Output

Returns a structured price comparison showing MSRP, current lowest street prices by retailer and region (UK/DE/US/Nordics), percentage discount or premium, deal timing recommendations tied to seasonal/holiday cycles, and a Kickstarter-vs-retail cost breakdown where applicable.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "game": {
       "type": "string",
       "description": "Brass: Birmingham | Wingspan (required)"
      },
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | it | ja | pt | ar"
      },
      "region": {
       "type": "string",
       "description": "GB | DE | US | DK | SE (optional, default GB)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "game": "Example Game",
  "attribution": "Pricing data via BoardGamePrices.co.uk",
  "current_prices": {
   "source": "boardgameprices.co.uk",
   "lowest_found": "£34.99"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-deal-watch-board-game-pricing-deal-tracker-7f70e586/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tablepulse.theaslangroupllc.com](https://www.zero.xyz/host/tablepulse.theaslangroupllc.com/llms.txt)
