# Batch vendor denied party screening API

**Use case:** 

Automate recurring vendor onboarding checks with client references, fuzzy match thresholds, and review-ready sanctions evidence.

## Input

```json
{
  "queries": [
    {
      "name": "Bank of Kunlun",
      "country": "CN",
      "reference": "vendor-001"
    },
    {
      "name": "Example Logistics LLC",
      "country": "US",
      "reference": "vendor-002"
    }
  ],
  "threshold": 68,
  "matchThreshold": 92,
  "maxMatches": 10
}
```

## Output

```json
{
  "reference": {
    "label": "Reference",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "object"
  },
  "disposition": {
    "label": "Disposition",
    "format": "string"
  },
  "bestScore": {
    "label": "Best score",
    "format": "number"
  },
  "matches": {
    "label": "Ranked matches",
    "format": "array"
  },
  "screenedAt": {
    "label": "Screened at",
    "format": "string"
  },
  "sourceRecordCount": {
    "label": "Source records",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [US Denied Party Screening API](https://apify.com/automation-lab/us-denied-party-screening-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/us-denied-party-screening-api) to learn more, explore other use cases, and run it yourself.