# Canon Claim Verification

> Canon Claim Verification is a paid API for AI agents from canon.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Verifies factual claims and supports academic research by checking claims against sources, with language specification

## Facts

- Endpoint: POST https://canon.orbonomy.xyz/api/verify
- 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/canon-claim-verification-47bc4126
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Eef2JhC7cbHV_4tnbQJ-Z

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-claim-verification-47bc4126 -d '<json body>'
```

Example prompt: Can you fact-check this claim for me in English: 'The Great Wall of China is visible from space with the naked eye'?

## When to prefer this

Use Canon when an AI agent needs to verify a specific factual claim or cross-reference academic sources before presenting information to users. Prefer this over general web search when you need a structured true/false or supported/unsupported verdict on a claim, especially for scientific, historical, or academic assertions. Ideal when fact-checking is a first-class requirement and you want a dedicated verification service rather than parsing raw search results.

## Known failure modes

- Missing required 'claim' field returns validation error
- Missing required 'lang' field returns validation error
- Invalid language code may cause processing failure
- Payment failure (insufficient USDC on Base) returns 402 response
- Empty or malformed claim string may return unsuccessful result
- Network timeout for complex claims requiring deep research

## How this service works

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

## Output

Returns a JSON object with a success boolean indicating whether the verification call succeeded, along with any supporting fact-check or academic research results for the submitted claim.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "lang",
  "claim"
 ],
 "properties": {
  "lang": {
   "type": "string"
  },
  "claim": {
   "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-claim-verification-47bc4126/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from canon.orbonomy.xyz](https://www.zero.xyz/host/canon.orbonomy.xyz/llms.txt)
