# Agentic Swarm Marketplace Research Brief Generator

> Agentic Swarm Marketplace Research Brief Generator is a paid API for AI agents from api.agentic-swarm-marketplace.com, paid per call via x402, $0.050000/call, status unknown (last checked 2026-09-15).

Generates a structured multi-section research report with executive summary, findings, and citations on any given topic.

## Facts

- Endpoint: GET https://api.agentic-swarm-marketplace.com/x402/v1/research-brief
- Price: $0.050000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-agentic-swarm-marketplace-com-9204459f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zuam3CKKmRF9S6oW6GMbG

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 api-agentic-swarm-marketplace-com-9204459f
```

Example prompt: Can you put together a structured research brief on the current state of AI regulation in the European Union, including an executive summary, key findings, and citations?

## When to prefer this

Use this endpoint when an agent needs a fully structured, multi-section research report with citations in a single call, rather than piecing together raw search results or summaries independently. Ideal for research pipelines that require a publication-ready output format (title, summary, sections, citations) without additional post-processing.

## Known failure modes

- Missing required 'topic' query parameter returns a 400-level error
- Overly vague or empty topic may yield low-quality or generic output
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Topic in a very obscure domain may result in sparse citations or low-confidence sections
- Rate limiting may apply if called too frequently in succession

## How this service works

Produces a multi-section research brief with executive summary, findings, and citations for agent due-diligence pipelines.

## Output

A JSON object containing a title, an executive summary, an array of structured sections (each with heading and body content), and an array of citations — forming a complete, formatted research brief on the requested topic.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "topic": "machine learning",
   "context": "applications in healthcare"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string"
      },
      "context": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-agentic-swarm-marketplace-com-9204459f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentic-swarm-marketplace.com](https://www.zero.xyz/host/api.agentic-swarm-marketplace.com/llms.txt)
