# Research Brief Generator

> Research Brief Generator is a paid API for AI agents from red-breeze-8b8c.keenanbooker83.workers.dev, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Synthesizes one to three source URLs into a structured research brief covering findings, evidence, conflicts, risks, and unanswered questions on a given topic

## Facts

- Endpoint: POST https://red-breeze-8b8c.keenanbooker83.workers.dev/research-brief
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/research-brief-generator-3e0147b7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wVr42dWWGyJG8xLpFAusb

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 research-brief-generator-3e0147b7 -d '<json body>'
```

Example prompt: Can you build me a structured research brief on 'the health effects of microplastics in drinking water'? Use these three sources: https://example.com/study1, https://example.com/report2, and https://example.com/article3 — I want findings, evidence, any conflicts between the sources, key risks, and open questions.

## When to prefer this

Choose this endpoint when you need a single synthesized, structured document from multiple sources rather than raw extraction or simple summarization. It is best suited for research workflows where you need findings, conflicts, risks, and open questions organized together — as opposed to sibling endpoints that perform narrower tasks like fact-checking a single claim, extracting a timeline, or evaluating one source's credibility.

## Known failure modes

- Source URL is inaccessible, paywalled, or returns an error — brief may be incomplete or fail
- Topic or question exceeds character limits — request rejected with validation error
- More than three source URLs supplied — request rejected
- Source content is too thin or non-textual (e.g. a PDF image scan) — output may be sparse
- Highly technical or ambiguous topic yields vague or overly broad findings

## How this service works

Create a structured research brief from one to three sources with findings, evidence, conflicts, risks, and unanswered questions

## Output

A structured research brief document containing: key findings from the supplied sources, supporting evidence and quotations, identified conflicts or contradictions between sources, risks or caveats flagged in the material, and a list of unanswered questions or gaps not addressed by the sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "topic": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1,
   "description": "Research topic or subject."
  },
  "question": {
   "type": "string",
   "maxLength": 3000,
   "minLength": 1,
   "description": "Optional research question to answer."
  },
  "sourceUrls": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 2048,
    "minLength": 1
   },
   "maxItems": 3,
   "minItems": 1,
   "description": "One to three public source URLs used to produce the research brief."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "agent": "Research Brief Agent",
  "confidence": 0.98,
  "keyFindings": [
   "The attack occurred on December 7, 1941.",
   "Congress approved the war declaration on December 8, 1941."
  ],
  "requestAccepted": true,
  "executiveSummary": "Japan attacked Pearl Harbor on December 7, 1941. Congress declared war against Japan on December 8, 1941."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/research-brief-generator-3e0147b7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from red-breeze-8b8c.keenanbooker83.workers.dev](https://www.zero.xyz/host/red-breeze-8b8c.keenanbooker83.workers.dev/llms.txt)
