How to start
The first step is registering on the platform. To do this, fill out and submit the registration request. Once your registration is confirmed, you can log in and set up a dashboard to analyze your traffic.
Create your first Zone
After logging in, you'll be prompted to create a zone. This will allow you to receive traffic reports by zone. To create a zone, click your company name in the side menu and click "Add Zone" in the drop-down menu.
Choose your integration
Open your zone settings and pick one of two integration methods, depending on whether you can add code to the destination page:
JS tag — for a landing page you control
Open the zone settings and copy the JavaScript tag. Place it into the <head> section of your landing page so our script can track incoming traffic and display a report. This path also captures behavioral signals — clicks, scroll, mouse movement — in addition to the visit classification.
Optionally, define a window.safeclick_callback function above the agent script tag to react to a visit's classification as it happens — for example, hide a form or redirect a suspicious visitor:
<script>
window.safeclick_callback = function (answer) {
if (answer.category == 'invalid') {
// e.g. hide a form, redirect the visitor
}
};
</script>
<script src="//sck.to/agent.js?key=API_KEY" async></script>The callback script must be placed above the agent script tag. answer.category is 'valid', 'risky', or 'invalid' — the same classification shown on your dashboard.
Redirect — no code required on the destination page
In the zone settings, switch the integration type to Redirect and set a Target URL — where all traffic goes by default — and, optionally, a Fallback URL for traffic marked Invalid. If you don't set a Fallback URL, all traffic goes to the Target URL. Use the generated link wherever you'd normally point your tracker or offer link — Keitaro, Binom, Voluum, an MMP campaign/redirect URL (Adjust, AppsFlyer, AppMetrika), or a similar redirect-based tracker all wrap the same way. Each click is scored and routed instantly, before it reaches your offer or MMP.
Double-check that your zone key is copied exactly, for either integration. A mismatched or missing key doesn't show an error right now — it just means no traffic will show up for that zone. If you've set everything up and still see no data, that's the first thing to check, or reach out and we'll help you verify it.
Monitoring the traffic
Both integration methods score traffic using device fingerprinting — to identify unique users and bot signals — and report to the same dashboard, dividing your traffic into three categories. With Redirect, the routing decision itself happens instantly on every click; with either method, it can take up to about 15 minutes for the visit to appear on your dashboard.
- Valid - hits that have successfully passed verification,
- Risky - hits that contain signs of low-quality traffic, location spoofing, proxy/VPN connections, or the use of outdated hardware or software, but are not considered fraudulent and therefore require increased attention,
- Invalid - hits are considered fraudulent or show signs of invalid traffic. This category includes hits generated by automation tools, malicious bots that mimic user actions, traffic from data centers, specialized browser configurations, and other types of behavioral threats.