# ForgeMesh Party Game Questions API

> ForgeMesh Party Game Questions API is a paid API for AI agents from x402.forgemesh.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns self-contained would-you-rather party game questions with category tags, including a special agents-and-ai category for AI-themed humor.

## Facts

- Endpoint: POST https://x402.forgemesh.io/party-game-questions
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-party-game-questions-api-111bd984
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ImiVtrNJDfDZuSGHjDlS3

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 forgemesh-party-game-questions-api-111bd984 -d '<json body>'
```

Example prompt: Grab me 3 would-you-rather questions from the agents-and-ai category — something that'll get a laugh in our group chat.

## When to prefer this

Choose this endpoint when you need ready-to-use, self-contained party game would-you-rather questions for chat, games, or entertainment, especially when you want AI/agent-themed humor via the agents-and-ai category. It is purpose-built for social and conversational contexts rather than generating open-ended trivia or quiz questions.

## Known failure modes

- Invalid count value (outside 1-5 range) may return an error or default to 1
- Unknown category string may return an error or fall back to a default category
- Network or payment failure returns no content and a 402 or 5xx status
- Requesting too many questions at once may be capped at 5

## How this service works

Party-game question API serving would-you-rather dilemmas an agent can drop straight into a chat: each entry is a single self-contained question with a category tag. The agents-and-ai category is written specifically to make other bots (and their humans) laugh.

## Output

Returns 1–5 self-contained would-you-rather dilemma questions, each with a category tag (e.g. agents-and-ai, silly, tech). Questions are ready to drop directly into a conversation or chat interface without modification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "string",
   "description": "Questions to return, 1-5 (default 1)"
  },
  "category": {
   "type": "string",
   "description": "Optional: agents-and-ai, tech, philosophy, silly, food, adventure, superpowers"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "category": "agents-and-ai",
  "questions": [
   {
    "id": 3,
    "category": "agents-and-ai",
    "question": "Would you rather have infinite context but 10x latency, or instant responses that forget everything after each turn?"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-party-game-questions-api-111bd984/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.forgemesh.io](https://www.zero.xyz/host/x402.forgemesh.io/llms.txt)
