# Canon Statistics Endpoint

> Canon Statistics Endpoint is a paid API for AI agents from tascanon.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves statistical data or analytics about a given topic via the Canon fact-checking and academic research service

## Facts

- Endpoint: POST https://tascanon.orbonomy.xyz/api/statistics
- 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-statistics-endpoint-12159a8e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vBnmNGhhH0oWQcqBrYalm

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-statistics-endpoint-12159a8e -d '<json body>'
```

Example prompt: Can you pull up the statistics on climate change impacts on Arctic sea ice? I need hard numbers to fact-check a claim I read.

## When to prefer this

Choose this endpoint when you need quantitative, statistical, or data-driven information about a specific topic for fact-checking or academic research purposes, and you want results backed by verified sources rather than generated text.

## Known failure modes

- Missing required 'topic' field returns validation error
- Unrecognized or overly vague topic may return empty or low-confidence results
- Payment failure via x402/USDC on Base results in 402 Payment Required response
- Service unavailability returns 5xx error
- Topic string that is too long or malformed may be rejected

## 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 and, on success, statistical data or analytics related to the requested topic drawn from Canon's fact-checking and academic research database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "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-statistics-endpoint-12159a8e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tascanon.orbonomy.xyz](https://www.zero.xyz/host/tascanon.orbonomy.xyz/llms.txt)
