# Conflict Detection Across Sources

> Conflict Detection Across Sources is a paid API for AI agents from red-breeze-8b8c.keenanbooker83.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Detects factual conflicts, scope differences, and unresolved tensions across two or three supplied source URLs on a given topic

## Facts

- Endpoint: POST https://red-breeze-8b8c.keenanbooker83.workers.dev/detect-conflicts
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/conflict-detection-across-sources-fde25b7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z4IA4CG_jzwUFsYjcNvCg

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 conflict-detection-across-sources-fde25b7f -d '<json body>'
```

Example prompt: Can you compare these two articles on vaccine efficacy and flag any factual conflicts or scope differences between them? Topic is 'mRNA vaccine effectiveness against Omicron', source 1 is https://pubmed.ncbi.nlm.nih.gov/12345678 and source 2 is https://who.int/news/item/vaccine-study-2023.

## When to prefer this

Use this endpoint when you have two or three specific source URLs and a defined topic and need to systematically surface contradictions, scope mismatches, or tensions between them — especially for journalism, research synthesis, or policy analysis. Prefer this over general fact-checking endpoints when the goal is cross-source comparison rather than verifying a single claim against sources. Prefer this over the sibling claim-comparison endpoint when you have full documents rather than discrete claims.

## Known failure modes

- Source URL is inaccessible or returns non-200 response — endpoint may error or return incomplete analysis
- Fewer than two source URLs provided — validation error
- Source URLs point to paywalled or login-required content — content may not be retrievable
- Sources are in different languages — conflict detection quality may degrade
- Topic string too vague or too long — may produce generic or truncated results
- Sources cover entirely unrelated topics — endpoint may return no meaningful conflicts

## How this service works

Detect factual conflicts, scope differences, and unresolved tensions across supplied sources

## Output

A structured analysis identifying factual conflicts, scope differences, and unresolved tensions found across the supplied sources, including which source makes which claim, where they directly contradict each other, and areas where differing scope or framing creates apparent but not genuine conflicts.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "topic": {
   "type": "string",
   "maxLength": 2000,
   "minLength": 1,
   "description": "Topic for which conflicts and factual tensions should be detected."
  },
  "sourceUrls": {
   "type": "array",
   "items": {
    "type": "string",
    "maxLength": 2048,
    "minLength": 1
   },
   "maxItems": 3,
   "minItems": 2,
   "description": "Two or three public source URLs to compare for contradictions and scope differences."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "agent": "Source Conflict Detection Agent",
  "confidence": 0.97,
  "sharedGround": [
   "Japan attacked Pearl Harbor on December 7, 1941.",
   "Congress acted on December 8, 1941."
  ],
  "requestAccepted": true,
  "scopeDifferences": [],
  "overallAssessment": "The sources are consistent and describe related consecutive events.",
  "directContradictions": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/conflict-detection-across-sources-fde25b7f/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)
