# TablePulse Party Finder

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

Returns board game recommendations optimized for party play settings, including group size fit and why each game suits the occasion

## Facts

- Endpoint: GET https://tablepulse.vercel.app/api/table/party-finder
- 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-party-finder-2bdf4805
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_A_rTAJ0D7jAAZ4xvv0gRM

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-party-finder-2bdf4805
```

Example prompt: We're having a house party this Saturday with about 12 people, all casual gamers — can you use TablePulse to find us a great party board game that works for a big loud group and doesn't take forever to learn?

## When to prefer this

Use this endpoint when you need party-specific board game recommendations filtered by group fit and social context. Prefer this over general board game search endpoints when the use case is explicitly a party, gathering, or large group setting and you want curated suggestions with rationale rather than raw search results. Not a replacement for BoardGameGeek data lookups.

## Known failure modes

- Missing or invalid player count parameter may return generic or empty recommendations
- Payment of 0.1 USDC via x402 must succeed before content is returned; failed payment yields 402 response
- Overly specific niche constraints may yield few or no recommendations
- Service may return stale recommendations if the underlying data cache is outdated

## How this service works

Party/social board-game finder by group size, vibe, and setting — including drinking-game and family-mixed-ages fit, grounded in current web sources (never BoardGameGeek data).

## Output

A JSON list of party board game recommendations, each with a game title and a 'why_fit' explanation describing why it suits the requested group size or party context.

## 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"
      },
      "vibe": {
       "type": "string",
       "description": "loud and silly | competitive | drinking game | chill (optional)"
      },
      "group_size": {
       "type": "string",
       "description": "8 | 6-10 (required)"
      },
      "drinking_ok": {
       "type": "string",
       "description": "true | false (optional)"
      },
      "family_mixed_ages": {
       "type": "string",
       "description": "true | false (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": {
  "recommendations": [
   {
    "title": "Example Party Game",
    "why_fit": "Great for 8+ loud groups"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-party-finder-2bdf4805/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)
