v1

latestOpenAPI 3.0.0proprietary2026-07-261695971.5 MB
Watchlist Verification

Retrieve a Watchlist Verification

Retrieve a specific Watchlist Verification by its ID. Returns details about sanctions and politically exposed person status.

get/verifications/watchlists/{watchlistVerificationId}

Path parameters

watchlistVerificationIdstring uuid required

The unique identifier for a resource.

Example:9a93d3b5-fb3b-4abf-9e70-26315b33506c

Watchlist Verification Id

Response

OK

idstring uuid required

The unique identifier for a resource.

workspace_idstring uuid required

The Workspace ID in which the verification has been created.

created_atstring date-time required

Creation date of the Watchlist Verification.

updated_atstring date-time required

Update date of the Watchlist Verification.

status'pending' | 'verified' | 'failed' | 'inconclusive' required

Status of the Watchlist Verification.

data_anonymizedboolean required

Indicates if the data related to the Watchlist Verification has been anonymized. If set to true, the data are removed and most fields will be NULL.

workflow_session_idstring uuid nullable required

Unique identifier of a Workflow Session. When provided, an Action is created in the Workflow Session, and this resource is associated with that Action.

previous_attempt_idstring uuid nullable required

ID of the previous attempt within the same workflow_session_id. Allows continuity between multiple attempts of the same Action. Null if this is the first attempt.

Example response

{
  "id": "9a93d3b5-fb3b-4abf-9e70-26315b33506c",
  "workspace_id": "9a93d3b5-fb3b-4abf-9e70-26315b33506c",
  "created_at": "2025-02-12T23:59:59Z",
  "updated_at": "2025-02-12T23:59:59Z",
  "status": "verified",
  "workflow_session_id": "0ef334d2-7f36-4643-8a2a-4283b4a3e4a4",
  "previous_attempt_id": "9412b83b-b4b9-4a94-97b5-2b43dfa4cde4",
  "data": {
    "politically_exposed_person": {
      "positions": [
        {
          "title": "Minister of Finance",
          "country_code": "FR",
          "started_on": "2020-01-01",
          "ended_on": "2021-01-01",
          "sources": [
            {
              "name": "Wikidata Politically Exposed Persons",
              "url": "https://www.opensanctions.org/datasets/wd_peps"
            }
          ]
        }
      ]
    },
    "sanctions": {
      "records": [
        {
          "description": "Management ban",
          "authority": "Commercial Court of Paris",
          "country_code": "FR",
          "started_on": "2020-01-01",
          "ended_on": "2021-01-01",
          "sources": [
            {
              "name": "CIA World Factbook heads of state and government",
              "url": "https://www.opensanctions.org/datasets/us_cia_world_factbook"
            }
          ]
        }
      ]
    }
  }
}