# Orbonomy Fact-Check Summary

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

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

## Facts

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

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

Example prompt: Can you fact-check the claim that 'eating carrots improves night vision' 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 without committing to a subscription. Ideal for agents that need occasional misinformation checks across multiple languages at low cost ($0.05/call).

## Known failure modes

- Missing required 'topic' or 'lang' field returns a validation error
- Unsupported language codes may return no results or an error
- Overly vague or very niche topics may produce low-quality or empty summaries
- Payment failure via x402 protocol results in 402 response with no content
- Server-side errors from underlying fact-check data sources may return non-success response

## 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 accuracy of the queried topic, sourced and analyzed for 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-a7d87940/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orbonomy.xyz](https://www.zero.xyz/host/orbonomy.xyz/llms.txt)
