# Orbonomy Fact-Check Summary

> Orbonomy Fact-Check Summary is a paid API for AI agents from api.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://api.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-95964df9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l8uqnaLdh-iDBE_nGEYPY

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-95964df9 -d '<json body>'
```

Example prompt: Can you fact-check the topic 'COVID-19 vaccine effectiveness' in English and give me a summary of what's true and what's misinformation?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call fact-check summary on a specific topic in a chosen language without maintaining a subscription. Ideal for agents that need on-demand misinformation detection or claim verification across multiple languages.

## 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 too broad may yield low-quality summary
- Payment failure via x402 protocol returns 402 Payment Required
- Network timeout for complex topics

## 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 covering the veracity and key claims around the requested topic in the specified 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/orbonomy-fact-check-summary-95964df9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.orbonomy.xyz](https://www.zero.xyz/host/api.orbonomy.xyz/llms.txt)
