# Veritas Statistics Lookup

> Veritas Statistics Lookup is a paid API for AI agents from veritas.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves statistical data (population, area, GDP, etc.) for a Wikidata entity by ID

## Facts

- Endpoint: POST https://veritas.orbonomy.xyz/api/statistics
- 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/veritas-statistics-lookup-c266a930
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cc-jhApL-DsfCKEWBcE0U

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-statistics-lookup-c266a930 -d '<json body>'
```

Example prompt: Can you pull the population, area, and GDP statistics for Germany — its Wikidata ID is Q183?

## When to prefer this

Use this endpoint when you need structured statistical data (population, area, GDP, etc.) for a known Wikidata entity and already have or can resolve the entity's Wikidata ID. Prefer this over general web search when you need clean, machine-readable statistics tied to a specific knowledge graph entity.

## Known failure modes

- Invalid or non-existent Wikidata entity ID returns success:false
- Requested stat categories not available for entity return empty or partial statistics object
- Malformed request body returns 400 error
- Payment not included or invalid returns 402 error
- Upstream Wikidata unavailability may cause timeout or 503

## How this service works

Multi-source fact verification API

## Output

A JSON object with a success flag and a statistics object containing the requested metrics (e.g. population, area, GDP) for the specified Wikidata entity.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Wikidata entity ID"
  },
  "stats": {
   "type": "array",
   "description": "Specific stats (population, area, gdp, etc)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/veritas-statistics-lookup-c266a930/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)
