# Sanctions Screening for Sberbank and Rosneft

**Use case:** 

Screen names like Sberbank and Rosneft against live OFAC and EU sanctions lists. Review match scores for compliance before onboarding.

## Input

```json
{
  "names": [
    "Sberbank",
    "Rosneft"
  ],
  "minScore": 0.6,
  "maxConcurrency": 3
}
```

## Output

```json
{
  "input": {
    "label": "Name",
    "format": "text"
  },
  "match": {
    "label": "Match?",
    "format": "boolean"
  },
  "matchCount": {
    "label": "# Matches",
    "format": "number"
  },
  "highestScore": {
    "label": "Highest score",
    "format": "number"
  },
  "matchedName": {
    "label": "Matched on",
    "format": "text"
  },
  "matchedNameType": {
    "label": "Name type",
    "format": "text"
  },
  "matches": {
    "label": "Matches",
    "format": "array"
  },
  "listsComplete": {
    "label": "All lists loaded?",
    "format": "boolean"
  },
  "disclaimer": {
    "label": "Disclaimer",
    "format": "text"
  }
}
```

## About this Actor

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