socure · Capability

Socure Global Watchlist Monitoring

Socure Global Watchlist Monitoring capability. Enrolls a profile for continuous screening, retrieves match alerts, and updates alert dispositions.

Socure Global Watchlist Monitoring is a Naftiko capability published by socure, one of 7 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/watchlist/monitoring.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Socure Enroll A Monitoring Profile. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Socure, AML, Compliance, Watchlist, and Monitoring.

Run with Naftiko SocureAMLComplianceWatchlistMonitoring

What You Can Do

POST
Enrollmonitoringprofile — Socure Enroll A Monitoring Profile
/v1/watchlist/monitoring/profiles
GET
Listmonitoringalerts — Socure List Monitoring Alerts
/v1/watchlist/monitoring/alerts

MCP Tools

socure-enroll-monitoring-profile

Socure Enroll A Monitoring Profile

socure-list-monitoring-alerts

Socure List Monitoring Alerts

read-only idempotent

Capability Spec

watchlist-monitoring.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Socure Global Watchlist Monitoring
  description: Socure Global Watchlist Monitoring capability. Enrolls a profile for continuous screening,
    retrieves match alerts, and updates alert dispositions.
  tags:
  - Socure
  - AML
  - Compliance
  - Watchlist
  - Monitoring
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    SOCURE_API_KEY: SOCURE_API_KEY
capability:
  consumes:
  - type: http
    namespace: watchlist-monitoring
    baseUri: https://api.socure.com
    description: Socure Watchlist Monitoring business capability.
    resources:
    - name: monitoring-profiles
      path: /api/3.0/watchlist/monitoring/profiles
      operations:
      - name: enrollMonitoringProfile
        method: POST
        description: Socure Enroll A Monitoring Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: monitoring-profile
      path: /api/3.0/watchlist/monitoring/profiles/{profileId}
      operations:
      - name: getMonitoringProfile
        method: GET
        description: Socure Get A Monitoring Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: profileId
          in: path
          type: string
          required: true
      - name: removeMonitoringProfile
        method: DELETE
        description: Socure Remove A Monitoring Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: profileId
          in: path
          type: string
          required: true
    - name: monitoring-alerts
      path: /api/3.0/watchlist/monitoring/alerts
      operations:
      - name: listMonitoringAlerts
        method: GET
        description: Socure List Monitoring Alerts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: 'SocureApiKey {{env.SOCURE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: watchlist-monitoring-rest
    port: 8080
    resources:
    - path: /v1/watchlist/monitoring/profiles
      name: monitoring-profiles
      operations:
      - method: POST
        name: enrollMonitoringProfile
        description: Socure Enroll A Monitoring Profile
        call: watchlist-monitoring.enrollMonitoringProfile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/watchlist/monitoring/alerts
      name: monitoring-alerts
      operations:
      - method: GET
        name: listMonitoringAlerts
        description: Socure List Monitoring Alerts
        call: watchlist-monitoring.listMonitoringAlerts
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: watchlist-monitoring-mcp
    port: 9090
    transport: http
    tools:
    - name: socure-enroll-monitoring-profile
      description: Socure Enroll A Monitoring Profile
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: watchlist-monitoring.enrollMonitoringProfile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: socure-list-monitoring-alerts
      description: Socure List Monitoring Alerts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: watchlist-monitoring.listMonitoringAlerts
      outputParameters:
      - type: object
        mapping: $.