# Veritas Geography Fact Lookup

> Veritas Geography Fact 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-15).

Retrieves multi-source verified geographic data for a given Wikidata entity

## Facts

- Endpoint: POST https://veritas.orbonomy.xyz/api/geography
- 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/veritas-geography-fact-lookup-284d5532
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NKwZyQ3Fkey_WZtMMmqot

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-geography-fact-lookup-284d5532 -d '<json body>'
```

Example prompt: Can you pull the verified geography data for France — its Wikidata entity ID is Q142 — and tell me what Veritas returns about it?

## When to prefer this

Use this endpoint when you need structured, multi-source verified geographic data about a specific entity identified by its Wikidata ID. Prefer it over general web searches when you need structured, validated facts rather than raw text, and when the entity is well-represented in Wikidata.

## Known failure modes

- Invalid or malformed Wikidata entity ID returns an error or success:false
- Entity ID exists but has no geography data — returns success:true with empty geography object
- Unknown entity ID not found in Wikidata — returns success:false
- Payment failure or insufficient USDC balance — returns 402 Payment Required
- Rate limiting or server error — returns 429 or 500 status

## How this service works

Multi-source fact verification API

## Output

Returns a success boolean and a geography object containing multi-source verified geographic facts and attributes associated with the given Wikidata entity ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Wikidata entity ID"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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