# Canon Fact-Checking & Academic Research API

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

Verifies claims and searches academic papers/journals for AI agents, returning a fact-check result for a given claim in a specified language

## Facts

- Endpoint: POST https://aury.orbonomy.xyz/api/verify
- Price: $0.1/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-api-44ba5807
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZjZpgZIl0j2_xYL39TejH

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-api-44ba5807 -d '<json body>'
```

Example prompt: Can you fact-check this claim for me in English: 'Humans only use 10% of their brain' — use Canon to verify it against academic sources and tell me if it's true or false.

## When to prefer this

Choose this endpoint when an AI agent needs to verify the factual accuracy of a specific claim using academic or scholarly evidence, especially when scientific, historical, or empirically verifiable assertions are involved. Prefer this over general web search when the goal is rigorous fact-checking against research literature rather than finding web pages.

## Known failure modes

- Missing required 'claim' field returns a validation error
- Missing required 'lang' field returns a validation error
- Unsupported language code may result in an error or degraded results
- Payment failure (insufficient USDC or wrong network) returns HTTP 402
- Claim too long or malformed may cause a processing error
- Ambiguous or highly subjective claims may return low-confidence or inconclusive results

## 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 verification request was processed, along with the fact-check result for the submitted claim based on academic and scholarly sources.

## 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-fact-checking-academic-research-api-44ba5807/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aury.orbonomy.xyz](https://www.zero.xyz/host/aury.orbonomy.xyz/llms.txt)
