AVAILABLE

Vendor Risk

Vendor Domain Risk

Compare a sender address to customer-provided approved and prior-domain baselines. It never sends a message or changes a vendor record.

CONTRACT

Predictable for agents. Legible for reviewers.

REST
POST /v1/vendors/domain-risk-checks
MCP tool
check_vendor_domain_risk
Inputs
Vendor reference, sender email, and optional customer-approved/prior domain baselines.
Returns
CLEAR or REVIEW_REQUIRED with a narrow domain-evidence packet.
Latency
Synchronous
Usage unit
Control check

AGENT-READABLE EXCEPTIONS

VENDOR_EMAIL_INVALIDVENDOR_DOMAIN_UNAPPROVEDVENDOR_DOMAIN_NEW

EXAMPLE REQUEST

POST /v1/vendors/domain-risk-checks
Authorization: Bearer apc_...
Content-Type: application/json

{
  "vendor_reference": "vendor-1007",
  "sender_email": "ap@northstarsupply.com",
  "approved_domains": [
    "northstarsupply.com"
  ],
  "prior_sender_domains": [
    "northstarsupply.com"
  ]
}

REPRESENTATIVE RESPONSE

{
  "product": "Vendor Domain Risk",
  "status": "COMPLETED",
  "decision": "CLEAR",
  "exceptions": [],
  "evidence": {
    "vendor_reference": "vendor-1007",
    "sender_domain": "northstarsupply.com",
    "approved_domains_checked": 1
  },
  "next_action": "Continue through the authorized workflow."
}
Structured outputStatus, decision, exceptions, evidence, confidence, and next action where relevant.
Tenant-scopedOnly the caller's organization records are searched or returned.
Read-onlyNo accounting record, vendor bank account, or payment is changed.

Use Vendor Domain Risk through RapidAPI.

Choose a capped marketplace plan, copy the generated request, and route the structured result through your own authorized workflow.