# Veritas Batch Fact Verification

> Veritas Batch Fact Verification is a paid API for AI agents from veritas.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Verifies multiple claims simultaneously against multiple sources and returns fact-check results for each claim

## Facts

- Endpoint: POST https://veritas.orbonomy.xyz/api/batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veritas-batch-fact-verification-9940c81a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FsoK_mbC3wHJamow4l5la

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 veritas-batch-fact-verification-9940c81a -d '<json body>'
```

Example prompt: Can you fact-check these three claims for me in English: 'The Great Wall of China is visible from space', 'Humans only use 10% of their brains', and 'Lightning never strikes the same place twice'?

## When to prefer this

Choose this endpoint when you need to verify multiple claims in a single API call rather than making repeated single-claim requests. Ideal for content moderation pipelines, journalism workflows, research validation, or any scenario where batching fact-checks reduces latency and cost. Best suited when claims are in natural language and you need multi-source corroboration rather than a single database lookup.

## Known failure modes

- Empty claims array returns error or empty results
- Unsupported language code may fall back to default or return error
- Malformed claim strings may produce low-confidence or null verdicts
- Rate limits or payment failures return 402 Payment Required
- Service may return success:false if upstream sources are unavailable
- Very obscure or niche claims may return inconclusive results

## How this service works

Multi-source fact verification API

## Output

An array of verification results for each submitted claim, along with a top-level success boolean. Each result likely includes a verdict or confidence assessment derived from cross-referencing multiple information sources.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "claims"
 ],
 "properties": {
  "lang": {
   "type": "string"
  },
  "claims": {
   "type": "array"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "results": {
   "type": "array"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

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