# Orbonomy Fact-Check Claims API

> Orbonomy Fact-Check Claims API 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-13).

Accepts a text query or claim and returns a fact-check result indicating whether the claim is supported or disputed

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/factcheck/claims
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-fact-check-claims-api-eee72b7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_viVVwORgazG4U6eLnfb9G

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-claims-api-eee72b7c -d '<json body>'
```

Example prompt: Can you fact-check this claim for me: 'The Great Wall of China is visible from space with the naked eye'?

## When to prefer this

Use this endpoint when an AI agent needs to programmatically verify the truthfulness of a specific claim, statement, or headline — especially in journalism, content moderation, or misinformation-detection workflows where pay-per-call pricing is acceptable and a simple text query interface is preferred.

## Known failure modes

- Missing required 'query' field returns validation error
- Empty or very short query may return low-confidence result
- Payment failure via x402 protocol blocks the request
- Ambiguous or multi-part claims may produce uncertain outcomes
- Rate limiting if too many requests are sent in quick succession

## 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 likely fact-check verdict data indicating whether the submitted claim is supported, disputed, or unverifiable based on available information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "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-claims-api-eee72b7c/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)
