# TablePulse Crowdfunding Radar

> TablePulse Crowdfunding Radar is a paid API for AI agents from tablepulse.vercel.app, paid per call via x402, $0.12/call, status unknown (last checked 2026-09-14).

Analyzes active board game crowdfunding campaigns (Kickstarter, Gamefound, etc.) and returns a verdict on whether to back, wait, or skip each project

## Facts

- Endpoint: GET https://tablepulse.vercel.app/api/table/crowdfunding-radar
- Price: $0.12/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tablepulse-crowdfunding-radar-901f77f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i3VQNaRvJNFNLCRf9BpaO

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-crowdfunding-radar-901f77f7
```

Example prompt: Can you run a crowdfunding radar check on the Massive Darkness 3 Gamefound campaign — should I back it now, wait for retail, or skip it entirely?

## When to prefer this

Use this endpoint when a user wants intelligence on whether to back a specific board game crowdfunding campaign on platforms like Kickstarter or Gamefound. It provides a clear actionable verdict rather than raw campaign stats. Prefer this over generic web search when you need a structured, opinionated recommendation about backing vs. waiting for retail vs. skipping entirely.

## Known failure modes

- Campaign not found or not currently active — returns empty or null result
- Unknown project name results in no match
- Payment gate failure (x402) — 402 response if USDC payment is not processed
- Rate limiting if called too frequently
- Crowdfunding platform API unavailable causing stale or missing campaign_data

## How this service works

Crowdfunding radar for a tabletop Kickstarter/Gamefound campaign — back-now-vs-wait-for-retail verdict, FOMO economics, late-pledge options, and typical retail-price outcome. Uses the real Gamefound public API when the project is hosted there.

## Output

Returns a JSON object containing the project name, a verdict string (e.g. 'wait_for_retail', 'back_now', 'skip'), and campaign_data with the source platform (e.g. gamefound_api), helping agents advise users on whether and when to financially commit to a crowdfunding campaign.

## 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": {
      "lang": {
       "type": "string",
       "description": "en | de | fr | es | it | ja | pt | ar"
      },
      "project": {
       "type": "string",
       "description": "Frosthaven | Chronicles of Drunagor: Aftermath (required — campaign name or Gamefound URL slug)"
      },
      "platform_hint": {
       "type": "string",
       "description": "gamefound | kickstarter (optional)"
      }
     }
    }
   },
   "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": {
  "project": "Example Campaign",
  "verdict": "wait_for_retail",
  "campaign_data": {
   "source": "gamefound_api"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-crowdfunding-radar-901f77f7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tablepulse.vercel.app](https://www.zero.xyz/host/tablepulse.vercel.app/llms.txt)
