# Veritas Leaders API

> Veritas Leaders API 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).

Returns a list of current world leaders, optionally filtered by country using a Wikidata country ID

## Facts

- Endpoint: POST https://veritas.orbonomy.xyz/api/leaders
- 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-leaders-api-cbbaa9c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LPSd43BHDg70ZgtzQdoav

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-leaders-api-cbbaa9c8 -d '<json body>'
```

Example prompt: Can you pull a list of up to 20 current world leaders from Veritas, filtered to the United Kingdom using its Wikidata country ID?

## When to prefer this

Use this endpoint when you need structured, up-to-date political leadership data tied to Wikidata country identifiers, particularly for geopolitical lookups, country profiles, or fact-checking political leadership claims. Prefer this over general web search when you need machine-readable structured data about heads of state or government.

## Known failure modes

- Invalid country_id returns an empty leaders array or error
- Missing or malformed limit parameter may return default results or a validation error
- Service unavailable at the .xyz domain returning a 402 or 5xx error
- Payment failure via x402 protocol preventing access
- No leaders found for a given country_id returning an empty array with success: true

## How this service works

Multi-source fact verification API

## Output

A JSON object containing a boolean 'success' field and a 'leaders' array with current world leaders, optionally scoped to a specific country identified by its Wikidata ID.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "country_id": {
   "type": "string",
   "description": "Filter by country Wikidata ID (optional)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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