# Orbonomy Fact-Check Summary

> Orbonomy Fact-Check Summary is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a fact-check summary for a given topic in a specified language

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/factcheck/summary
- 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/orbonomy-fact-check-summary-1a95a2d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y4r-WtziYrGYy40KqImDK

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 orbonomy-fact-check-summary-1a95a2d6 -d '<json body>'
```

Example prompt: Can you fact-check the claim that 'eating chocolate prevents heart disease' and give me a summary in English?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call fact-check summary on a specific topic in a particular language, especially within an automated pipeline or agent workflow where per-query billing via x402 is acceptable and no subscription is needed.

## Known failure modes

- Missing required 'topic' field returns validation error
- Missing required 'lang' field returns validation error
- Unsupported language code may return empty or error response
- Topic too vague or ambiguous may return low-confidence summary
- Payment failure via x402 protocol results in 402 response blocking the call

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a success boolean and a fact-check summary for the given topic in the requested language, indicating whether the claim is supported, disputed, or false based on available fact-checking sources.

## 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/orbonomy-fact-check-summary-1a95a2d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
