# TablePulse Solo Board Game Picks

> TablePulse Solo Board Game Picks 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 curated solo-mode board game recommendations with honest assessments of whether the solo variant was designed-for-solo or is a weak bolt-on, grounded in current web reviews.

## Facts

- Endpoint: GET https://tablepulse.theaslangroupllc.com/api/table/solo-picks
- 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-solo-board-game-picks-c1e8b6bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3YtbhnUK9J82QYVtkPVh1

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-solo-board-game-picks-c1e8b6bd
```

Example prompt: Can you find me the best solo board games for someone who enjoys medium-complexity strategy or dungeon-crawl themes — and make sure the solo mode was actually designed for solo play, not just a bolt-on variant?

## When to prefer this

Choose this endpoint when a user specifically wants to play board games solo and cares about the quality of the solo experience — especially distinguishing games built from the ground up for solo play versus those with a weak bolt-on solo mode added as an afterthought. Prefer this over generic board game recommendation endpoints when the solo variant quality verdict is the key decision factor.

## Known failure modes

- No matching games found for the given preference combination — returns empty results or a narrowed fallback list
- Ambiguous or unrecognized theme/preference inputs may yield broad or generic results
- Web review sources unavailable or stale may reduce confidence in recommendations
- Invalid or missing required preference parameters return a 400-level error

## How this service works

Best solo-mode board games by preference, with an honest solo-variant-quality read (designed-for-solo vs. weak bolt-on), grounded in current web reviews (never BoardGameGeek data).

## Output

A ranked list of solo board game recommendations including game titles, complexity ratings, theme descriptions, a solo variant quality verdict (designed-for-solo vs. bolt-on), and summaries of current web reviews supporting each recommendation.

## 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"
      },
      "preference": {
       "type": "string",
       "description": "puzzly euro | narrative campaign | quick 20-minute session (required)"
      },
      "experience_level": {
       "type": "string",
       "description": "new to solo gaming | experienced (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 Solo Game",
    "solo_mode_quality": "excellent — a first-class mode"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tablepulse-solo-board-game-picks-c1e8b6bd/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)
