# Orbonomy Fact-Check Claims API

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

Submits a claim or statement for automated fact-checking and returns a verification result

## Facts

- Endpoint: POST https://app.orbonomy.xyz/api/factcheck/claims
- 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-claims-api-fa7d379c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YhElZtS3wN7C8mfeMXRcn

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-fa7d379c -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 you need automated fact-checking of a specific textual claim or statement, especially in workflows involving content moderation, journalism assistance, misinformation detection, or verifying user-submitted content. Priced at $0.05 USDC per call via x402, making it cost-effective for moderate-volume fact verification tasks.

## Known failure modes

- Missing required 'query' field returns validation error
- Empty or too-short query string may return error
- Ambiguous or opinion-based claims may yield inconclusive results
- Payment failure via x402 protocol returns 402 status
- Service unavailability returns 5xx error
- Rate limiting or quota exceeded returns 429 error

## How this service works

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

## Output

Returns a JSON object with a success boolean and likely a fact-check verdict indicating whether the submitted claim is accurate, partially accurate, or false, potentially with supporting evidence or confidence indicators.

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