<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: raigo mets</title>
    <description>The latest articles on DEV Community by raigo mets (@raigo_mets_f4b56ae1ac307b).</description>
    <link>https://dev.to/raigo_mets_f4b56ae1ac307b</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3873414%2F53c055c5-5555-4c3c-9d1f-0be96087a6b4.png</url>
      <title>DEV Community: raigo mets</title>
      <link>https://dev.to/raigo_mets_f4b56ae1ac307b</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raigo_mets_f4b56ae1ac307b"/>
    <language>en</language>
    <item>
      <title>How I Built a Fraud Detection API That Catches Antidetect Browsers</title>
      <dc:creator>raigo mets</dc:creator>
      <pubDate>Sat, 11 Apr 2026 11:28:34 +0000</pubDate>
      <link>https://dev.to/raigo_mets_f4b56ae1ac307b/how-i-built-a-fraud-detection-api-that-catches-antidetect-browsers-1l2f</link>
      <guid>https://dev.to/raigo_mets_f4b56ae1ac307b/how-i-built-a-fraud-detection-api-that-catches-antidetect-browsers-1l2f</guid>
      <description>&lt;p&gt;Every fraud tool on the market — IPQS, Sift, DataDome — was built for a world where bots used datacenter IPs. That world is gone.&lt;/p&gt;

&lt;p&gt;Today, fraudsters use &lt;strong&gt;antidetect browsers&lt;/strong&gt; like Kameleo, GoLogin, AdsPower, and Dolphin to spoof their fingerprints. They route traffic through &lt;strong&gt;residential proxies&lt;/strong&gt; that look like normal home connections. Legacy tools can't see them.&lt;/p&gt;

&lt;p&gt;So I built &lt;a href="https://sntlhq.com" rel="noopener noreferrer"&gt;Sentinel&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Does
&lt;/h2&gt;

&lt;p&gt;Sentinel is a REST API that tells you if a visitor is real or fake. One API call, under 40ms, checks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;VPN / Proxy detection&lt;/strong&gt; (including residential proxies)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Antidetect browser detection&lt;/strong&gt; (Kameleo, GoLogin, AdsPower, Dolphin)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI bot detection&lt;/strong&gt; (LLM-powered scrapers that mimic humans)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Device intelligence&lt;/strong&gt; (incognito, VM, emulator, browser tampering)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;3D face liveness&lt;/strong&gt; (optional — proves the user is a real person at the camera)&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;1. Add the SDK to your frontend:&lt;/strong&gt;&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
html
&amp;lt;script async src="https://sntlhq.com/assets/edge.js"&amp;gt;&amp;lt;/script&amp;gt;
2. Call the API from your backend:


const result = await fetch('https://sntlhq.com/v1/evaluate', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer sk_live_YOUR_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({ token: req.body.sentinelToken })
});
const data = await result.json();
// data.isSuspicious → true = block, false = allow
3. Get a clear answer:


{
  "isSuspicious": false,
  "details": {
    "ip": "84.15.201.92",
    "vpn": false,
    "proxied": false,
    "cc": "EE"
  },
  "deviceIntel": {
    "browserTampering": false,
    "botDetected": false,
    "incognito": false
  }
}
Why I Built This
I worked in fraud prevention and kept seeing the same problem: tools that cost $500+/month and still missed 40% of modern threats. Residential proxies and antidetect browsers make traditional IP reputation useless.

Sentinel combines network intelligence (IP, VPN, proxy detection) with device intelligence (fingerprint tampering, bot detection) in a single call. No CAPTCHAs, no friction for real users.

Free to Use
1,000 API requests per hour — no credit card required
Sign up at sntlhq.com and get your API key in 2 minutes
Full docs at sntlhq.com/api
Would love feedback from anyone working in fraud prevention or security. What signals would make this more useful for your use case?


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>security</category>
      <category>webdev</category>
      <category>api</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
