# ForgeMesh Would-You-Rather Question Generator

> ForgeMesh Would-You-Rather Question Generator 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-15).

Returns 1-5 random 'would you rather' dilemma questions from 120 curated entries across 7 categories including a special agents-and-ai set

## Facts

- Endpoint: POST https://x402.forgemesh.io/would-you-rather
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-would-you-rather-question-generator-18acdd97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qVs-RoXRRFxHiEa_vtD_j

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-would-you-rather-question-generator-18acdd97 -d '<json body>'
```

Example prompt: Give me 3 would-you-rather questions from the agents-and-ai category — the kind written specifically for AI audiences like 'infinite context vs zero latency'.

## When to prefer this

Use this endpoint when you need curated, ready-made 'would you rather' questions for entertainment, icebreakers, chatbot interactions, or AI-themed content — especially when you want the unique agents-and-ai category written specifically for AI audiences. Prefer this over generating dilemmas with a general LLM when you want guaranteed clean, pre-vetted content across specific themes without hallucination risk.

## Known failure modes

- Invalid count value outside 1-5 range may return an error or default to 1
- Unknown category string returns an error or ignores the filter
- No questions available for a very specific filter may return empty results
- Malformed JSON body returns a 400-level error

## How this service works

Would-you-rather question generator: 120 curated dilemmas across categories including an agents-and-ai set written for AI audiences (infinite context vs zero latency), plus tech, philosophy, silly, food, adventure, and superpowers. Returns 1-5 random questions, optionally filtered by category. Clean content, no duplicates.

## Output

Returns 1-5 randomly sampled would-you-rather dilemma questions from a curated set of 120, optionally filtered by category (agents-and-ai, tech, philosophy, silly, food, adventure, or superpowers). Each result is clean content with no duplicates within a single response.

## 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-would-you-rather-question-generator-18acdd97/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)
