# ForgeMesh Conversation Starters

> ForgeMesh Conversation Starters 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 either/or conversation-starter questions filtered by topic category, for use in bots, games, and discussion prompts.

## Facts

- Endpoint: POST https://x402.forgemesh.io/conversation-starters
- 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-conversation-starters-c758c46c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EBreO4RMFrk57zbJ8zRuT

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-conversation-starters-c758c46c -d '<json body>'
```

Example prompt: Can you grab me 3 either/or conversation starter questions from the philosophy category so I can post them to my Discord channel to spark a discussion?

## When to prefer this

Choose this endpoint when you need ready-made, human-crafted either/or conversation starters without generating them yourself via an LLM. Ideal for community bots, Discord games, onboarding warm-ups, or any agent that needs discussion prompts in a specific topic category like food, philosophy, or superpowers. Prefer this over open-ended LLM generation when you want structured, repeatable, topic-filtered prompts at low cost.

## Known failure modes

- Invalid count value (not 1–5) may return an error or default to 1
- Unsupported category value returns an error or falls back to a default
- Network or payment failure returns a 402 or 5xx error
- Empty response if the category has no available questions

## How this service works

Pull ready-to-use conversation starters framed as either/or choices — from lighthearted food debates to philosophical trade-offs — one to five at a time, filtered by topic. For community bots, Discord games, onboarding warm-ups, and any agent that needs to spark a discussion.

## Output

A set of 1–5 either/or style conversation-starter questions, each framed as a choice between two options, filtered to the requested category (e.g. food, silly, philosophy). Useful for bot responses, game rounds, or warm-up prompts.

## 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-conversation-starters-c758c46c/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)
