# Orbonomy Crawl - Claim Verification

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

Verifies a factual claim by searching and scraping the web, returning a verdict with sourced evidence

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/verify
- 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-crawl-claim-verification-e98fff24
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w_NHWiEe0qnZ6ozGJNeJI

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-crawl-claim-verification-e98fff24 -d '<json body>'
```

Example prompt: Can you verify the claim that 'the Eiffel Tower is 330 meters tall' using 5 sources from the web?

## When to prefer this

Choose this endpoint when an AI agent needs to fact-check or validate a specific textual claim against live web sources without requiring API keys or subscriptions — especially useful for autonomous agents that can pay per-request in USDC via x402. Prefer over general search endpoints when the goal is specifically claim verification with a pass/fail verdict.

## Known failure modes

- Claim not verifiable from available web sources — returns success: false
- Insufficient sources found for the requested number — partial result or failure
- Malformed or empty claim string — likely 400 error
- Payment not processed or insufficient USDC — 402 Payment Required
- Rate limits or network errors during scraping — transient failure

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a success boolean and a data object containing the verification result — whether the claim appears to be true or false based on scraped web evidence, along with supporting source information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "claim"
 ],
 "properties": {
  "claim": {
   "type": "string",
   "description": "Claim to verify"
  },
  "sources": {
   "type": "number",
   "description": "Number of sources"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-crawl-claim-verification-e98fff24/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
