# ForgeMesh Icebreaker Questions

> ForgeMesh Icebreaker Questions 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-13).

Returns 1–5 categorized either/or icebreaker dilemma questions in structured JSON, suitable for bots, standups, game nights, or community channels.

## Facts

- Endpoint: POST https://x402.forgemesh.io/icebreaker-questions
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forgemesh-icebreaker-questions-6d7dbe28
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jm6UOl6TRHlsQoIHGk3nR

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-icebreaker-questions-6d7dbe28 -d '<json body>'
```

Example prompt: Can you grab me 3 icebreaker either/or dilemma questions from the agents-and-ai category to post in our dev team Slack channel?

## When to prefer this

Use this endpoint when you need ready-made, structured either/or icebreaker questions for automated posting — particularly when you want category-specific dilemmas (e.g., AI/agents, tech, philosophy, superpowers) for bots, standups, or community channels, and need JSON output requiring no further formatting.

## Known failure modes

- Invalid count value outside 1–5 range may return an error or be clamped to default
- Unrecognized category string may return an error or fall back to a default category
- Payment failure (x402 protocol) prevents response
- Empty or malformed JSON body returns a 400-level error

## How this service works

Random icebreaker dilemmas for bots, game nights, standups, and community channels: pick a category — silly, food, adventure, philosophy, tech, superpowers, or agents-and-ai — and get genuinely hard-to-choose either/or questions in structured JSON, ready to post as-is.

## Output

A structured JSON array of either/or icebreaker dilemma questions in the requested category (or random if none specified), with 1–5 questions per call — ready to post as-is to a channel, bot, or game session.

## 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-icebreaker-questions-6d7dbe28/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)
