Make privacy a feature - not a liability.
Embed face, plate, and PII redaction into your product so every image and video is compliant the moment it’s uploaded. Ship a privacy-first experience without building computer vision in-house.
Product UI - user-uploaded media redacted the instant it’s uploaded, with an “at upload” badge.
Three steps. Nothing stored.
Send media
Push a file or URL via REST API - or trigger at the moment your users upload.
Scanon detects PII
Faces, plates, IDs, badges, and tattoos identified across images and video.
Redacted media returned
You get the clean asset back. Nothing is stored on our side. Zero retention.
Built for this vertical, not repurposed for it.
Redact at point of upload
Media cleaned before it’s stored, so PII never lands in your database.
One integration, full coverage
Faces, plates, tattoos, IDs, badges across images and video from one API.
A differentiator you can market
Turn privacy into a demonstrable product feature.
Zero-retention architecture.
Zero-retention - Scanon never stores what it processes, so you don’t inherit our data liability.
Coverage: faces, license plates, ID documents, badges, and tattoos - across images and video.
Built to help you meet GDPR, CCPA, and BIPA at the product level, by default.
No ML infra to build. One API call.
One REST API and SDK for Node and Python. Wire it into your upload handler and you’re done - no ML infra, no model ops.
- • REST API + SDKs (Node, Python)
- • Images and video from a single endpoint
- • Redact at point of upload
import { Scanon } from "@scanon/sdk";
const scanon = new Scanon(process.env.SCANON_API_KEY);
app.post("/upload", async (req, res) => {
const clean = await scanon.redact(req.file, {
targets: ["faces", "plates", "ids", "tattoos"],
});
await storage.save(clean); // PII never touches your DB
});