# Veritas Entity Lookup

> Veritas Entity 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 structured entity data from Wikidata by entity ID for multi-source fact verification

## Facts

- Endpoint: POST https://veritas.orbonomy.xyz/api/entity
- 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-entity-lookup-72010dc7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RBEaVsFn2AOqwq4agbTeI

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-entity-lookup-72010dc7 -d '<json body>'
```

Example prompt: Pull up the Veritas entity record for Wikidata ID Q252 and tell me what facts it returns about that entity.

## When to prefer this

Use this endpoint when you need authoritative, structured entity data from Wikidata by a known Q-ID for fact verification, entity enrichment, or knowledge graph lookups. Prefer this over general web search when you have a specific Wikidata entity ID and need structured, machine-readable facts rather than unstructured text.

## Known failure modes

- Invalid or non-existent Wikidata entity ID returns success: false with no entity data
- Malformed request body missing required 'id' field returns a 400-level error
- Payment failure or insufficient USDC balance results in a 402 Payment Required response
- Wikidata upstream unavailability may cause timeout or error response
- Rate limiting may occur under high request volume

## How this service works

Multi-source fact verification API

## Output

Returns a JSON object with a success boolean and, on success, an entity object containing structured Wikidata data for the requested entity ID, which can be used for fact-checking or entity enrichment.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "id"
 ],
 "properties": {
  "id": {
   "type": "string",
   "description": "Wikidata entity ID (e.g. Q252)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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