# TablePulse Solo Picks

> TablePulse Solo Picks 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 curated solo board game recommendations with solo-mode quality ratings via a paid x402-gated API

## Facts

- Endpoint: GET https://tablepulse.vercel.app/api/table/solo-picks
- 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-solo-picks-88a0ddd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cu7WmR840m5z1nvsvPUDz

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-picks-88a0ddd4
```

Example prompt: Can you pull up TablePulse's solo picks and find me a board game I can play by myself — ideally something with an excellent solo mode that's not too complicated?

## When to prefer this

Use this endpoint when a user explicitly wants solo or single-player board game recommendations and you need curated, opinionated picks with solo-mode quality ratings. Prefer this over general board game search tools when solo playability is the primary criterion and the user wants a ready-made shortlist rather than raw database browsing. Note that this service intentionally excludes BoardGameGeek data, so results represent an independent curation perspective.

## Known failure modes

- Payment not submitted or x402 payment header missing — returns 402 Payment Required
- Insufficient USDC balance — payment fails before response is returned
- Service unavailable on Vercel deployment — returns 5xx error
- No results matching filter criteria — returns empty recommendations array

## 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 JSON array of recommended board games optimized for solo play, each entry including the game title and a solo mode quality assessment (e.g. 'excellent — a first-class mode'), curated independently of 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"
      },
      "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-picks-88a0ddd4/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)
