Watchlist Screening

Retrieve the latest watchlist screening result for a verification entity or a specific stakeholder. Watchlist screening checks individuals and entities against sanctions lists, politically exposed persons (PEP) databases, and criminal records.

Overview

When screening completes, a webhook is sent with the updated idvRisk and a screening summary. Use the endpoints below to retrieve full screening details including matched sources and records.

These read-only endpoints return the most recent screening result, including:

  • Matches — any hits found, grouped by source list
  • Sources checked — an audit trail of every source that was checked

Two endpoints are available depending on whether you are retrieving the screening result for the verification entity or for a specific stakeholder:

  • GET /v5/verifications/:trace/watchlist/latest - Get entity screening result
  • GET /v5/verifications/:trace/stakeholders/:stakeholderId/watchlist/latest - Get stakeholder screening result

GET/v5/verifications/:trace/watchlist/latest

Get entity screening

Retrieve the latest watchlist screening result for the verification entity.

Path parameters

  • Name
    trace
    Type
    string
    Description

    The unique identifier for the verification.

Response fields

FieldTypeDescription
screeningIdstringUnique identifier for the screening run.
tracestringThe verification trace.
totalHitsnumberTotal individual record hits returned by the provider.
hasMatchesbooleanWhether any matches were found.
matchedSourcesarraySources that had hits, each containing matched records. See Matched sources.
sourcesCheckedarrayAudit trail of every source checked. See Sources checked.
triggeredByActionstringWhat triggered the screening: "on-verified", "manual-api", "manual-portal", or "scheduled".
triggeredByUidstringUID of the user who triggered the screening (optional, present on manual triggers).
triggeredByEmailstringEmail of the user who triggered the screening (optional, present on manual triggers).
screenedAtnumberUnix timestamp of when the screening was performed (milliseconds).
screenedTimestringHuman-readable screening time.
createdAtnumberUnix timestamp of when the record was created (milliseconds).
createdTimestringHuman-readable creation time.

Error responses

Status CodeError TypeDescription
404not_foundNo watchlist screening exists for this verification.

Request

GET
/v5/verifications/:trace/watchlist/latest
curl -X GET "https://api.bronid.com/v5/verifications/{trace}/watchlist/latest" \
  -H "Authorization: Basic {credentials}"

Response

{
  "timestamp": "2026-02-28T04:00:00.000Z",
  "serviceUid": "5qA5Hq0n1JQTY2TASItxYXSRyND3",
  "trace": "abc123-verification-trace",
  "path": "/v5/verifications/:trace/watchlist/latest",
  "pathParams": {
    "trace": "abc123-verification-trace"
  },
  "statusCode": 200,
  "message": "Watchlist screening retrieved successfully.",
  "help": null,
  "status": "success",
  "data": {
    "screeningId": "scr-abc123",
    "trace": "abc123-verification-trace",
    "totalHits": 0,
    "hasMatches": false,
    "matchedSources": [],
    "sourcesChecked": [
      {
        "sourceId": "au-dfat-sanctions",
        "sourceName": "DFAT Consolidated List",
        "sourceCountry": "AUS",
        "sourceType": "SANCTION",
        "matched": false
      }
    ],
    "triggeredByAction": "on-verified",
    "screenedAt": 1740715200000,
    "screenedTime": "28/02/2026 04:00:00",
    "createdAt": 1740715200000,
    "createdTime": "28/02/2026 04:00:00"
  },
  "error": null
}

Error response (404)

{
  "timestamp": "2026-02-28T04:00:00.000Z",
  "serviceUid": "5qA5Hq0n1JQTY2TASItxYXSRyND3",
  "trace": "abc123-verification-trace",
  "path": "/v5/verifications/:trace/watchlist/latest",
  "pathParams": {
    "trace": "abc123-verification-trace"
  },
  "statusCode": 404,
  "message": "Not found",
  "help": null,
  "status": "error",
  "data": null,
  "error": {
    "type": "not_found",
    "details": [
      {
        "message": "Watchlist screening not found",
        "code": "not_found",
        "path": ["screening"]
      }
    ]
  }
}

GET/v5/verifications/:trace/stakeholders/:stakeholderId/watchlist/latest

Get stakeholder screening

Retrieve the latest watchlist screening result for a specific stakeholder within a verification.

Path parameters

  • Name
    trace
    Type
    string
    Description

    The unique identifier for the verification.

  • Name
    stakeholderId
    Type
    string
    Description

    The unique identifier for the stakeholder.

Response fields

The response fields are identical to the entity screening response, with the addition of:

FieldTypeDescription
stakeholderIdstringThe stakeholder that was screened.

Error responses

Status CodeError TypeDescription
404not_foundNo watchlist screening exists for this stakeholder.
422validation_errorInvalid stakeholder ID (e.g. empty or whitespace).

Request

GET
/v5/verifications/:trace/stakeholders/:stakeholderId/watchlist/latest
curl -X GET "https://api.bronid.com/v5/verifications/{trace}/stakeholders/{stakeholderId}/watchlist/latest" \
  -H "Authorization: Basic {credentials}"

Response

{
  "timestamp": "2026-02-28T04:00:00.000Z",
  "serviceUid": "5qA5Hq0n1JQTY2TASItxYXSRyND3",
  "trace": "abc123-verification-trace",
  "path": "/v5/verifications/:trace/stakeholders/:stakeholderId/watchlist/latest",
  "pathParams": {
    "trace": "abc123-verification-trace",
    "stakeholderId": "sth-director-001"
  },
  "statusCode": 200,
  "message": "Watchlist screening retrieved successfully.",
  "help": null,
  "status": "success",
  "data": {
    "screeningId": "scr-def456",
    "trace": "abc123-verification-trace",
    "stakeholderId": "sth-director-001",
    "totalHits": 1,
    "hasMatches": true,
    "matchedSources": [
      {
        "sourceId": "nz-pep-list",
        "sourceName": "New Zealand PEP List",
        "sourceDescription": "Politically exposed persons in New Zealand",
        "sourceLink": "https://example.com/nz-pep",
        "sourceCountry": "NZL",
        "sourceType": "PEP",
        "records": [
          {
            "name": "Jane Smith",
            "entityType": "individual",
            "sourceType": "PEP",
            "pepType": "national",
            "pepLevel": 2,
            "positions": ["Member of Parliament"],
            "politicalParties": ["Example Party"]
          }
        ]
      }
    ],
    "sourcesChecked": [
      {
        "sourceId": "nz-pep-list",
        "sourceName": "New Zealand PEP List",
        "sourceCountry": "NZL",
        "sourceType": "PEP",
        "matched": true
      }
    ],
    "triggeredByAction": "on-verified",
    "screenedAt": 1740715200000,
    "screenedTime": "28/02/2026 04:00:00",
    "createdAt": 1740715200000,
    "createdTime": "28/02/2026 04:00:00"
  },
  "error": null
}

Matched sources

Each entry in matchedSources represents a source list that returned one or more hits. Records are grouped by source.

FieldTypeDescription
sourceIdstringUnique identifier for the source list.
sourceNamestringHuman-readable name of the source list.
sourceDescriptionstringDescription of the source list.
sourceLinkstringURL to the source list.
sourceCountrystringCountry the source list belongs to (ISO 3166-1 alpha-3, e.g. "AUS", "USA").
sourceTypestring"SANCTION", "PEP", "CRIMINAL", or "OTHER".
recordsarrayIndividual match records from this source. See Match records.

Match records

Each record in records represents a single matched individual or entity from a source list.

FieldTypeDescription
namestringName of the matched person or entity.
entityTypestring"individual" or "entity".
sourceTypestring"SANCTION", "PEP", "CRIMINAL", or "OTHER".
aliasNamesstring[]Known aliases (optional).
dateOfBirthstring[]Known dates of birth (optional).
citizenshipstring[]Known citizenships (optional).
addressstring[]Known addresses (optional).
pepTypestringType of PEP classification (optional, PEP records only).
pepLevelnumberPEP level (optional, PEP records only).
positionsstring[]Known positions held (optional, PEP records only).
politicalPartiesstring[]Known party affiliations (optional, PEP records only).
sanctionDetailsstring[]Details of the sanction (optional, sanction records only).
linksstring[]Reference URLs (optional).

Sources checked

Each entry in sourcesChecked is an audit record of a source list that was checked, regardless of whether it produced any matches.

FieldTypeDescription
sourceIdstringUnique identifier for the source list.
sourceNamestringHuman-readable name of the source list.
sourceCountrystringCountry the source list belongs to (ISO 3166-1 alpha-3, e.g. "AUS", "USA").
sourceTypestring"SANCTION", "PEP", "CRIMINAL", or "OTHER".
lastCheckedstringWhen the source was last checked (optional).
matchedbooleanWhether this source returned any hits.

Was this page helpful?