# TablePulse Family Fit

> TablePulse Family Fit 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 family-friendly board game recommendations with realistic age suitability assessments and a gateway progression ladder for introducing games to families

## Facts

- Endpoint: GET https://tablepulse.vercel.app/api/table/family-fit
- 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-family-fit-d578f40a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_88G1P7SblgWfwi_WVrJML

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-family-fit-d578f40a
```

Example prompt: Can you use TablePulse to find some family-friendly board games for my kids aged 6 and 9 — especially ones where the box age might say 8+ but they actually play well at younger ages, and include a starter ladder so we can work up to more complex games?

## When to prefer this

Choose this endpoint when you need family-specific board game recommendations with honest age-suitability commentary that goes beyond the manufacturer's box rating, especially when building a progression ladder for families new to tabletop gaming. Prefer this over generic game search tools when the user explicitly wants family-fit filtering, gateway game sequences, or realistic age assessments rather than raw BGG-style data.

## Known failure modes

- Payment not processed — x402 payment of 0.1 USDC required before response is returned
- No matching games found for extremely restrictive age or complexity filters
- Rate limiting if payment gateway experiences delays
- Stale recommendations if underlying game database has not been recently updated

## How this service works

Age-appropriate board-game picks for a family — actual-age-vs-box-age reality check and a gateway-game progression ladder, grounded in current web reviews (never BoardGameGeek data).

## Output

A JSON object containing a 'gateway_ladder' array of game titles ordered by increasing complexity for family onboarding, and a 'recommendations' array of objects each with a game title and 'actual_age_reality' field describing the real-world playable age versus the box rating.

## 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"
      },
      "oldest_age": {
       "type": "string",
       "description": "optional — for mixed-age groups"
      },
      "player_count": {
       "type": "string",
       "description": "optional"
      },
      "youngest_age": {
       "type": "string",
       "description": "6 | 9 (required)"
      }
     }
    }
   },
   "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": {
  "gateway_ladder": [
   "Example Game A",
   "Example Game B"
  ],
  "recommendations": [
   {
    "title": "Example Family Game",
    "actual_age_reality": "box says 8+ but plays comfortably at 6+"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-family-fit-d578f40a/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)
