# TablePulse Family Fit — Age-Appropriate Board Game Finder

> TablePulse Family Fit — Age-Appropriate 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-13).

Returns age-appropriate board game recommendations for a family with an actual-age vs box-age reality check and a gateway-game progression ladder, sourced from current web reviews.

## Facts

- Endpoint: GET https://tablepulse.theaslangroupllc.com/api/table/family-fit
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tablepulse-family-fit-age-appropriate-board-game-finder-8bec8b23
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uOwzRukfl44-mBQyhMWkT

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-age-appropriate-board-game-finder-8bec8b23
```

Example prompt: Can you find board games that would actually work for my family — I have kids aged 5 and 9 — and tell me which ones are easier or harder than the box age says, plus suggest a progression ladder so we can grow into more complex games over time?

## When to prefer this

Use this endpoint when a user needs family-focused board game picks grounded in real-world age-appropriateness rather than just box ratings, especially when they want a structured progression path from starter to more complex games. Prefer this over generic board game recommendation endpoints when the family's actual ages and realistic playability assessment matter most.

## Known failure modes

- Missing or invalid age parameters returns a 400 error
- Ages outside supported range (e.g. adults-only household) may return no suitable results
- Web review sources temporarily unavailable may reduce recommendation freshness
- Highly niche or obscure game requests may yield limited progression ladder options

## 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 curated list of board game recommendations suited to the family's actual ages, with an honest comparison of printed box age vs real-world playability, a gateway-game progression ladder showing how the family can level up to more complex titles, and supporting context drawn from current web reviews (not BoardGameGeek data).

## 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-age-appropriate-board-game-finder-8bec8b23/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)
