Skip to content
Eden Engine

Politically Exposed Persons (PEP) & Sanctions Screening by Name

omnial/x402-pep-check

Given a person's full name (with optional country and date-of-birth filters to cut down on false positives for common names), returns whether they match a global politically exposed persons and sanctions watchlist spanning 230+ jurisdictions, including relatives and close associates. Each match returned includes the matched name, classification (e.g. politician, relative/close associate), countries, and any known public positions held.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Full name of person to screen"
    },
    "country": {
      "type": "string",
      "description": "ISO country code filter (optional)"
    },
    "birth_date": {
      "type": "string",
      "description": "Alias for date_of_birth (optional)"
    },
    "date_of_birth": {
      "type": "string",
      "description": "ISO date of birth (YYYY-MM-DD) for disambiguation, reduces false positives on common names (optional)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "required": [
    "query",
    "country_filter",
    "birth_date_filter",
    "is_pep",
    "match_count",
    "total_results",
    "matches",
    "source",
    "screened_at",
    "lists_queried"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "The name text exactly as submitted, echoed back."
    },
    "is_pep": {
      "type": "boolean",
      "description": "Whether any match was found. true on the head-of-state fixture, false on the obscure-individual fixture."
    },
    "source": {
      "type": "string",
      "description": "The underlying watchlist data source, e.g. 'dilisense'."
    },
    "matches": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "The matched entity's name from the watchlist -- not always identical to the query text (a fuzzy/close-name match, e.g. 'Vladimir Putin Jr.' or an unrelated similarly-spelled name, was observed alongside an exact match)."
          },
          "datasets": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Source dataset code(s) the match came from, e.g. 'dilisense_pep'."
          },
          "countries": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "ISO country codes, e.g. ['RU']."
          },
          "positions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Public offices/roles held, often with date ranges (e.g. '2000-05-07 - 2008-05-07 President of Russia'). Observed empty on a relatives/close-associates match and populated with up to 26 entries on a long-serving politician's match."
          },
          "classification": {
            "type": "string",
            "description": "e.g. 'POLITICIAN', 'RELATIVES_AND_CLOSE_ASSOCIATES'."
          },
          "last_updated_at": {
            "type": [
              "string",
              "null"
            ],
            "description": "Observed null on every match in both fixtures captured."
          }
        },
        "additionalProperties": true
      },
      "description": "Empty array observed when `is_pep` is false."
    },
    "match_count": {
      "type": "number",
      "description": "Number of matches returned, e.g. 3 or 0."
    },
    "screened_at": {
      "type": "string",
      "description": "ISO 8601 timestamp of when the screening ran."
    },
    "lists_queried": {
      "type": "object",
      "properties": {
        "collection": {
          "type": "string",
          "description": "e.g. 'dilisense/consolidated-pep'."
        },
        "major_lists": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "source_count": {
          "type": "number",
          "description": "Number of source lists aggregated, e.g. 230."
        },
        "freshness_note": {
          "type": "string"
        }
      },
      "description": "Metadata about the watchlist collection queried, not specific to this query's result.",
      "additionalProperties": true
    },
    "total_results": {
      "type": "number",
      "description": "Total matching records; 3 or 0 on the two fixtures observed."
    },
    "country_filter": {
      "type": [
        "string",
        "null"
      ],
      "description": "Echoes the `country` input filter if supplied. Both captured fixtures queried without a country filter, so only null has been observed."
    },
    "birth_date_filter": {
      "type": [
        "string",
        "null"
      ],
      "description": "Echoes the `date_of_birth`/`birth_date` input filter if supplied. Both captured fixtures queried without a birth-date filter, so only null has been observed."
    }
  },
  "description": "The PEP/sanctions screening result, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.081081
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026