# Canon – Fact-Checking & Academic Research Summary

> Canon – Fact-Checking & Academic Research Summary is a paid API for AI agents from veri.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Verifies claims and summarizes academic research on a given topic in a specified language, returning a success-flagged result

## Facts

- Endpoint: POST https://veri.orbonomy.xyz/api/summary
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/canon-fact-checking-academic-research-summary-b1b81597
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bboOoeVFGzxLUMdH2Tu4T

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 canon-fact-checking-academic-research-summary-b1b81597 -d '<json body>'
```

Example prompt: Can you fact-check this claim for me: 'Moderate coffee consumption reduces the risk of type 2 diabetes' — search the academic literature on that topic and give me a summary in English.

## When to prefer this

Use this endpoint when an AI agent needs to verify factual claims or retrieve summarized academic research on a topic, especially when the agent requires a lightweight per-call micropayment model (USDC on Base via x402) rather than a subscription. Prefer over general web search when scholarly accuracy and fact-verification are the primary goals.

## Known failure modes

- Missing required fields 'lang' or 'topic' returns an error
- Unsupported language code may yield no results or an error
- Obscure or highly niche topics may return limited academic coverage
- Payment failure via x402/USDC on Base prevents the call from completing
- Network or upstream academic database errors may cause success: false

## How this service works

Fact-checking and academic research for AI agents. Verify claims, search papers, explore journals. USDC on Base.

## Output

A JSON object with a 'success' boolean indicating whether the lookup completed, along with (implied) a summary or fact-check result for the given topic in the requested language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "lang",
  "topic"
 ],
 "properties": {
  "lang": {
   "type": "string"
  },
  "topic": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/canon-fact-checking-academic-research-summary-b1b81597/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from veri.orbonomy.xyz](https://www.zero.xyz/host/veri.orbonomy.xyz/llms.txt)
