# fittings PEP Wikidata Screener

> fittings PEP Wikidata Screener is a paid API for AI agents from fittings.sh, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-14).

Screens a person's name against Wikidata position-held claims, returning all government and state offices they have held with start and end dates.

## Facts

- Endpoint: GET https://fittings.sh/v1/pep/wikidata-screen
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-pep-wikidata-screener-64fcb643
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yE-9A4ihexwHJ-07xvNdL

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 fittings-pep-wikidata-screener-64fcb643
```

Example prompt: Can you screen the name 'Vladimir Putin' against Wikidata to find every government or state office he's held, checking up to 5 candidates?

## When to prefer this

Choose this endpoint when you need a fast, structured PEP (Politically Exposed Person) lookup grounded in Wikidata's open knowledge graph, especially for compliance, KYC, or due diligence workflows. It is ideal when you want structured office-held history with dates rather than unstructured biographical text. Prefer it over general web search when you need machine-readable, citable political position data.

## Known failure modes

- Name not found in Wikidata — returns empty results or no matching candidates
- Ambiguous name matches multiple unrelated people — top candidates may include incorrect individuals
- Wikidata data gap — person is a PEP but position-held claims are incomplete or missing
- limit parameter out of range (must be 1–5) — request rejected
- Wikidata service unavailable — upstream timeout or error

## How this service works

Screen a person name against Wikidata position-held claims, returning every government or state office the matching people have held, with start and end dates.

## Output

A list of matching Wikidata entities for the queried name, each with the government or state offices they have held (position title, start date, end date), sourced from Wikidata position-held claims.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Person name to screen"
      },
      "limit": {
       "type": "number",
       "description": "Candidate people to check, 1-5, default 3"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-pep-wikidata-screener-64fcb643/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fittings.sh](https://www.zero.xyz/host/fittings.sh/llms.txt)
