-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Nick edited this page Dec 26, 2025
·
7 revisions
Privacy-first API that removes personal information from text and JSON before sending to ChatGPT, Claude, or any LLM.
π API Documentation: https://masker.kikuai.dev/docs
π Landing Page: https://kikuai-lab.github.io/masker/
We store NOTHING. We log NOTHING. Your data is processed in-memory and immediately discarded.
- β No database - All processing is in-memory
- β No file storage - Nothing is written to disk
- β No content logging - Only metadata (method, path, status) is logged
- β Stateless - Each request is independent
- β GDPR compliant - No personal data retention
curl -X POST "https://masker.kikuai.dev/v1/redact" \
-H "Content-Type: application/json" \
-d '{
"text": "Contact John Doe at john@example.com",
"mode": "placeholder"
}'Response:
{
"redacted_text": "Contact <PERSON> at <EMAIL>",
"items": [
{"entity_type": "PERSON", "start": 8, "end": 16, "score": 0.85},
{"entity_type": "EMAIL", "start": 20, "end": 36, "score": 1.0}
],
"processing_time_ms": 15.29
}- β Text & JSON - Process plain text or entire JSON structures recursively
- β Multiple PII Types - EMAIL, PHONE, CARD (regex), PERSON (NER)
- β
Flexible Modes - mask (
***), placeholder (<TYPE>) - β Privacy First - Stateless, no logging, no data storage
- β Multi-Language - English & Russian NER support
- β Fast - Average processing time: 15-25ms
- Quick Start Guide
- API Reference
- LLM Proxy (NEW) - OpenAI-compatible gateway
- Error Codes
- JSON Mode Guide
- Stateless Architecture
- Rate Limits
- Privacy Policy
- Clean user messages before sending to ChatGPT/Claude
- Anonymize support tickets for AI analysis
- Process form data before LLM classification
- Sanitize logs for AI-powered monitoring
| Type | Description | Detection Method |
|---|---|---|
| Email addresses | Regex | |
| PHONE | Phone numbers | International formats |
| CARD | Credit card numbers | Regex + Luhn validation |
| PERSON | Person names | spaCy NER (EN/RU) |
AGPL-3.0
Built by KikuAI Lab