Network Posture: Optimal
RedactAI Cyber-Sentinel is actively monitoring incoming API traffic. All database endpoints are secured and DPDP compliance is being enforced in real-time across 4 zones.
Scans Over Time
PII Types Breakdown
Recent Scans
| Time | Source | Entities Found | Types | Status | Actions |
|---|
Map how personal data moves through your product.
Turn a public product URL into a first-party, cookie, tracker, AI processor, and compliance data-flow map with risk-ranked edges and concrete controls.
Know if a website is audit-ready in one minute.
A plain-English compliance snapshot for privacy notice, consent, minimization, public PII exposure, secure transport, and third-party processors.
Test privacy defenses with fake data, not customer data.
Generate safe PII and prompt-injection payloads for staging, logs, AI prompts, analytics, exports, and redaction regression tests.
Find leaked model routes, prompts, and AI provider keys before attackers do.
Scan your product's public surface for shipped LLM credentials, exposed source maps, model names, client-side AI endpoints, RAG traces, and agent framework fingerprints.
Elite Engines
Checking tools...Bulk File Processing
Supports PDF, DOCX, XLSX, CSV, JSON, TXTScan History
| Date | Source | Input Preview | Entities | Types | Status |
|---|
API Keys
Use API keys to integrate RedactAI into your applications. Do not share your secret keys in publicly accessible areas such as GitHub.
Quick Start
Make your first API request using our endpoints.
curl -X POST https://api.redact-ai.com/v1/scan \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"text": "My name is Rahul Sharma, email: rahul@gmail.com",
"mode": "redact"
}'
import requests
response = requests.post(
"https://api.redact-ai.com/v1/scan",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"text": "My name is Rahul Sharma, email: rahul@gmail.com",
"mode": "redact"
}
)
print(response.json())
{
"redacted": "My name is [NAME], email: [EMAIL]",
"entities": [
{"type": "name", "value": "Rahul Sharma", "start": 11, "end": 23},
{"type": "email", "value": "rahul@gmail.com", "start": 32, "end": 47}
],
"count": 2,
"processing_ms": 18
}
Webhooks
Listen to events on your RedactAI account so your integration can automatically trigger reactions.
No webhooks configured yet.