# TablePulse Party & Social Board Game Finder

> TablePulse Party & Social Board Game Finder 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).

Recommends party and social board games filtered by group size, vibe, setting, drinking-game suitability, and mixed-ages fit using current web sources

## Facts

- Endpoint: GET https://tablepulse.theaslangroupllc.com/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-social-board-game-finder-62cf0e47
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RVoPb3z4IrLGZGXYe6Cdl

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-social-board-game-finder-62cf0e47
```

Example prompt: We have 10 people coming over Saturday night — mix of adults and a couple of teenagers — and we want something rowdy and competitive that could work as a drinking game for the adults. Can you find party board games that fit that vibe and setting?

## When to prefer this

Use this endpoint when the user needs party or social board game recommendations filtered by group dynamics (size, age mix), social vibe, or setting — especially when drinking-game suitability or mixed-ages compatibility is a key concern. Prefer this over the general board-game recommendation endpoint when the social/party context is primary. Avoid if the user wants solo games, strategy-heavy titles, or competitive tournament-style games.

## Known failure modes

- Unsupported vibe or setting values return a 400 error
- Group size outside supported range may return no results or an error
- Overly restrictive filter combinations (e.g. family-safe + drinking game) may yield empty results
- Temporary upstream web source failures may degrade result freshness
- Payment failure (x402) results in 402 response and no game data returned

## 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 curated list of party/social board games with descriptions, party-fit ratings, notes on drinking-game suitability, and mixed-ages compatibility — sourced from current web data, not BoardGameGeek.

## 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-social-board-game-finder-62cf0e47/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)
