# Sanctions List Search Tool

**Use case:** 

Search names across OFAC, EU, UK OFSI, and UN sanctions lists.

## Input

```json
{
  "subjects": [
    {
      "name": "Vladimir Putin"
    },
    {
      "name": "Kim Jong Un"
    }
  ],
  "authorities": [
    "ofac",
    "eu",
    "ofsi",
    "un"
  ],
  "includePepWatchlists": false,
  "entityTypes": [
    "person",
    "organization",
    "vessel",
    "aircraft"
  ],
  "matchingPolicy": "balanced",
  "suppressClearedMatches": false
}
```

## Output

```json
{
  "screenedName": {
    "label": "Screened name",
    "format": "string"
  },
  "outcome": {
    "label": "Outcome",
    "format": "string"
  },
  "riskLevel": {
    "label": "Risk level",
    "format": "string"
  },
  "recommendedAction": {
    "label": "Recommended action",
    "format": "string"
  },
  "reasons": {
    "label": "Reasons",
    "format": "array"
  },
  "matches": {
    "label": "Possible matches",
    "format": "array"
  },
  "suppressedMatchCount": {
    "label": "Suppressed matches",
    "format": "integer"
  },
  "sourceCoverage": {
    "label": "Source coverage",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Sanctions & Watchlist Screening — Risk-Scored Decisions](https://apify.com/maximedupre/sanctions-screening) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/sanctions-screening) to learn more, explore other use cases, and run it yourself.