Advisory risk signals — not accusations

Fraud awareness software

Spot shady identifiers before they cost you.

ScamAssassin screens emails, phones, IPs, usernames, addresses, wallets, and more for reported abuse history and returns a risk score with actionable signals — so your team knows when a signup or order deserves a second look.

At a glance

  • 8 Identifier types
  • JSON Assess responses
  • Encrypted PII at rest
  • Free Starter (250/mo)

Why ScamAssassin

A heads-up system — not a courtroom

ScamAssassin does not label someone a criminal. It tells your business when an identifier may deserve a closer look because of past reports, disposable patterns, or related risk signals.

Awareness, not accusation

A higher score means “worth reviewing,” not that a person committed fraud. Keep decisions in your hands — ScamAssassin only surfaces the signal.

Built for operator workflows

Wire recommendations into checkout, signup, or ticket intake so your team can approve, monitor, or escalate with eyes open.

No match ≠ safe forever

Lack of hits is not proof an identifier is clean. Treat every result as advisory context alongside your own policies and verification steps.

Use cases

Where teams use ScamAssassin

Checkout review

Flag orders where email, phone, or IP already carries abuse history before you fulfill.

Signup screening

Give onboarding teams a risk score when new accounts look disposable or previously reported.

Ticket triage

Prioritize support and billing tickets tied to identifiers that have triggered past alerts.

Wallet checks

Assess crypto addresses and related identifiers before accepting payouts or deposits.

Integration

Up and running in three steps

1

Create a service key

Order a ScamAssassin plan and receive sa_pub_ / sa_sec_ credentials in your Syndaq client area.

2

POST an identifier

Send type + value to /v1/scamassassin/assess with Bearer authentication.

3

Act on the recommendation

Use risk_score, signals, and recommendation to allow, monitor, or send for manual review.

Example

Copy, paste, ship

Every response includes a request_id, masked identifier, risk assessment, and advisory signals. Rate limit and quota headers help you backoff gracefully.

Results are for operator review workflows. They do not establish identity or criminal conduct.

Request
curl -sS -X POST https://api.syndaq.com/v1/scamassassin/assess \
  -H "Authorization: Bearer sa_sec_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"email","value":"[email protected]"}'
Response
{
  "success": true,
  "request_id": "req_01JZ6X4P3JH8R0ME7TZQ",
  "cached": false,
  "identifier": { "type": "email", "masked": "u***@e***.com" },
  "assessment": {
    "risk_score": 78,
    "risk_level": "high",
    "confidence": 0.84,
    "recommendation": "manual_review"
  },
  "signals": [
    { "code": "EMAIL_ABUSE_HISTORY", "severity": "high", "confidence": 0.91 },
    { "code": "DISPOSABLE_EMAIL", "severity": "medium", "confidence": 0.98 }
  ]
}

Reference

API endpoints

Included with your ScamAssassin plan. Base URL https://api.syndaq.com.

Method Path Description
POST /v1/scamassassin/assess Assess an identifier (JSON body).
GET /v1/scamassassin/assess Assess via type and value query parameters.
GET /v1/scamassassin/status Plan limits, quota remaining, and supported types.

Pricing

Plans for every stage

Start free with 250 assessments per month. Upgrade to 20,000 or 50,000 when review volume grows.

Starter

Free

Evaluate identifiers in development and light production.

  • 120 requests / minute
  • 250 assessments / month
  • Secret key authentication
  • Identifier risk assessment API
  • Email, phone, IP, wallet & more
  • Rate limit & quota headers
Get started

Enterprise

monthly
$129.00 USD

High-volume assessments with elevated limits.

  • 3,000 requests / minute
  • 50,000 assessments / month
  • Secret key authentication
  • Identifier risk assessment API
  • Email, phone, IP, wallet & more
  • Rate limit & quota headers
Get started

All paid plans bill monthly. Need custom quotas or invoicing? Talk to Syndaq.

FAQ

Common questions

Quick answers about what ScamAssassin means for your review workflow, privacy, and plan limits.

No. ScamAssassin is advisory. A higher score means the identifier has signals worth reviewing — report history, disposable patterns, or related risk — not a legal finding about a person.

Email, phone, IP, username, physical address, crypto wallet, domain, and URL. Coverage depth grows over time; the assess endpoint stays the same.

No. Sensitive identifier values are encrypted at rest. API responses only return masked values such as r***@e***.com.

Starter includes 250 assessments per month free. Developer includes 20,000 and Enterprise 50,000. Upgrade when volume grows.

Ready to give your team better heads-up?

Pick a plan, create your ScamAssassin keys, and start assessing identifiers in minutes.

Choose a plan Developer docs