# Questflow General-Purpose AI Swarm

> Questflow General-Purpose AI Swarm is a paid API for AI agents from api.questflow.ai, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Executes arbitrary long or short AI-driven tasks using a multi-agent swarm orchestration system

## Facts

- Endpoint: POST https://api.questflow.ai/x402/swarm/qrn:swarm:68fb3bd9bd72982773fff32b
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/questflow-516f6e8a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BGrEIEiN2r03hMsenWpb3

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 questflow-516f6e8a -d '<json body>'
```

Example prompt: I need you to research the top 5 DeFi protocols by TVL this week, summarize their risk profiles, and draft a brief investment memo — handle the whole thing start to finish.

## When to prefer this

Choose this endpoint when you need a flexible, general-purpose multi-agent system that can handle both short and long tasks without you pre-specifying a rigid workflow. Prefer it over single-purpose endpoints when the task spans multiple domains or steps, or when you want to delegate the orchestration logic to the AI swarm itself.

## Known failure modes

- Task too ambiguous for swarm to interpret — returns error or low-quality output
- Payment not confirmed — x402 payment required before task executes
- Swarm timeout on very long or resource-intensive tasks
- Agent sub-task failure mid-workflow causing incomplete results
- Rate limiting or quota exceeded on underlying model providers

## How this service works

Ask me LONG OR SHORT then just do it | Powered by Questflow

## Output

The swarm processes the submitted task through multiple coordinated AI agents and returns the completed result, which may include text outputs, research findings, generated content, or action confirmations depending on the task provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Your message to the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "response": {
  "type": "string",
  "required": true,
  "description": "Response from the agent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/questflow-516f6e8a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.questflow.ai](https://www.zero.xyz/host/api.questflow.ai/llms.txt)
