ScamSentry API
Integrate our deterministic forensic URL validator directly into your applications, browser extensions, or enterprise firewalls.
Overview
The ScamSentry API is a blazing-fast, deterministic validation engine that processes URLs through 4 intensive OSINT layers without relying on slow AI models. It natively catches typosquatting, Domain Generation Algorithms (DGA), burner domains, and directly syncs with global threat feeds.
Endpoint: Verify Core
POST https://scamsentry.com/api/v1/verify
Request Headers
Authorization: Bearer ss_live_your_api_key
Content-Type: application/json
Content-Type: application/json
Request Body
{
"url": "https://secure-login.paypal.com.scam.net"
}
Example Response
{
"success": true,
"meta": {
"engineVersion": "v2.3.0-deterministic",
"tier": "free"
},
"data": {
"target": "https://secure-login.paypa1.com.scam.net",
"trustScore": 15,
"severity": "Critical Threat",
"fingerprint": "fc7a8...e921b",
"diagnostics": {
"heuristics": { "triggerCount": 3, "scorePenalty": 85 },
"dnsForensics": { "scorePenalty": 40 },
"mxPedigree": { "hasMailServer": false }
}
}
}