Compliance 6 min read Updated July 2026

Account Confidence Score API: AI-Powered Counterparty Risk Screening

ClaudeFinLab's Account Confidence Score API flags high-risk counterparties before payment. Screen vendors, clients, and accounts against fraud signals, OFAC sanctions, and behavioral risk factors - through Claude in seconds.

What is the Account Confidence Score?

The Account Confidence Score is a composite 0–100 risk rating for any counterparty — vendor, customer, contractor, or financial account — that aggregates multiple risk signals into a single actionable metric. A score of 100 means high confidence (low risk); a score below 50 means the account warrants immediate review before payment.

ClaudeFinLab exposes this as an MCP tool through Claude and as a REST API. Finance and compliance teams use it to automate vendor screening, flag suspicious payments before they process, and maintain a continuously scored vendor master file.

Why Account Screening Matters More Than Ever

Payment fraud, vendor master manipulation, and sanctions violations are not hypothetical risks. Finance teams deal with them regularly:

  • Ghost vendor fraud: fictitious suppliers added to the AP system to divert payments
  • Duplicate vendor fraud: real suppliers added twice with slight name variations
  • Sanctions violations: inadvertently paying an OFAC-designated entity — triggering civil or criminal liability
  • Invoice fraud: realistic-looking invoices from spoofed or newly registered entities
  • Business email compromise: supplier account detail changes submitted by attackers

Manual screening catches some of these. Automated scoring catches all of them consistently, at zero marginal cost per check.

Score Components

ComponentWeightWhat it checks
OFAC/Sanctions35%SDN, consolidated list, fuzzy name matching
Structural Validity25%EIN/TIN format, address consistency, entity age
Duplicate Detection20%Name similarity to existing vendors, bank account overlap
Behavioral Signals20%Payment pattern anomalies, invoice rounding, frequency changes

Configuration: Enterprise users can adjust component weights to match their risk tolerance. A bank might weight OFAC at 50%; a manufacturing company might weight duplicate detection higher.

Score Interpretation

Score rangeRisk levelRecommended action
80–100Low riskAuto-approve payment / onboard vendor
60–79Moderate riskOne-level approval required
40–59Elevated riskCompliance team review
0–39High riskBlock and escalate immediately

Using the API Through Claude

  1. Get your free API key at claudefinancelab.com
  2. Add the compliance MCP server to Claude Desktop:
{
  "mcpServers": {
    "claudefinlab-compliance": {
      "url": "https://claudefinancelab.com/compliance/sse",
      "headers": { "Authorization": "Bearer YOUR_API_KEY" }
    }
  }
}
  1. Ask Claude: "Score account confidence for vendor: Acme Supplies LLC, EIN 12-3456789, address 100 Main St, Dallas TX. Flag if OFAC match or duplicate of existing vendors."

Batch Vendor Master Screening

For retroactive compliance, the batch API allows you to score your entire vendor master in one call:

POST /compliance/account-confidence-batch
{
  "accounts": [
    {"name": "Acme Supplies LLC", "ein": "12-3456789", "address": "..."},
    {"name": "Global Trade Partners", "ein": "98-7654321", "address": "..."},
    ...
  ],
  "flag_threshold": 60
}

The response includes each account's composite score, component breakdown, and specific flags — ranked from highest to lowest risk for efficient review prioritization.

Related Compliance Tools