// the privacy primitive for the agentic internet

Agents handle your data.
Sentinel handles the privacy.

Deterministic entity intelligence that AI agents discover, provision, and pay for autonomously. No contracts. No procurement. No humans in the loop.

Try it now. Paste text, see redaction.

This calls the real POST /api/v1/redact endpoint. 100 free requests/day.

Input Text free tier
Output ready
Hit "Redact" to see results...
cURL Example
# Redact PII from text
curl -X POST https://sentinelhq.polsia.app/api/v1/redact \
  -H "Content-Type: application/json" \
  -d '{"text": "Call John at john@acme.com or 555-123-4567", "mode": "type_label"}'

Machine-readable. Agent-callable.

POST /api/v1/redact
Detect and redact PII/PHI/PCI entities from text. Returns sanitized output with entity metadata. Supports mask, hash, and type_label redaction modes.
$0.001/req + $0.0002/entity + $0.0005/1K chars
POST /api/v1/detect
Detect entities without redaction. Returns entity positions, types, and confidence scores. Same detection engine, no text modification.
$0.001/req + $0.0002/entity + $0.0005/1K chars
POST /api/v1/payment/token
Obtain a single-use x402 payment token. Tokens expire in 5 minutes. Include as X-Payment-Token header.
Protocol: x402
GET /.well-known/x402
x402 service discovery manifest. Agents use this to discover Sentinel's capabilities, pricing, and payment methods programmatically.
Protocol: x402 discovery
GET /api/v1/entities
List all supported entity types with categories, descriptions, and confidence levels. Use to configure which entities to detect.
Free
GET /api/v1/openapi.json
Full OpenAPI 3.1 specification. Import into any API client or agent framework for type-safe integration.
Free

How agents pay for privacy.

// 1. Agent calls /redact without payment
const res = await fetch("/api/v1/redact", {
  method: "POST",
  body: JSON.stringify({ text: transcript })
});

// 2. Server responds 402 with payment instructions
// X-Payment-Required: true
// X-Payment-Protocol: x402
// X-Payment-Amount: 0.003500
// X-Payment-Token-URL: /api/v1/payment/token

// 3. Agent obtains payment token
const { token } = await fetch("/api/v1/payment/token", {
  method: "POST"
}).then(r => r.json());

// 4. Agent retries with payment token
const result = await fetch("/api/v1/redact", {
  method: "POST",
  headers: { "X-Payment-Token": token },
  body: JSON.stringify({ text: transcript, mode: "type_label" })
}).then(r => r.json());

// result.redacted_text = "Patient [PERSON_NAME] (DOB: [DATE_OF_BIRTH])..."
// result.entities_found = 8
// result.cost.total_usd = 0.003500

Privacy tooling was built for humans.
Agents can't use any of it.

Every enterprise deploying AI agents in healthcare, finance, legal, and contact centers hits the same wall. The agent needs to process sensitive data. Every existing tool requires a human to set it up.

x

Dashboard required

Every privacy tool ships with a web UI that a human needs to configure. Agents don't use browsers.

x

Enterprise contracts

Procurement cycles, vendor negotiations, MSAs. An agent can't sign a contract.

x

API keys & accounts

Pre-provisioned credentials, subscription management, billing portals. None of it is agent-native.

x

Data leaves your infra

Cloud-based privacy tools require sending sensitive data to a third party. That's the opposite of privacy.

Four steps. Zero humans.

01

Discover

Agent finds Sentinel via /.well-known/x402 manifest. Machine-readable capabilities, pricing, payment methods.

02

Call

POST to /api/v1/redact with text and entity config. Server returns 402 with payment instructions.

03

Settle

Agent obtains x402 payment token. Single-use, expires in 5 minutes. Cryptographic proof of payment.

04

Process

Deterministic NER engine redacts entities. Returns sanitized text + metadata. No data stored.

Deterministic NER.
Not a wrapper around GPT.

General-purpose tools
13-46%
PII missed in real-world data
Sentinel NER Engine
0.2-7%
PII missed in real-world data

Tested across 45,000+ words of real-world data. Six years of focused development on PII detection produces fundamentally different results than general-purpose tools.

0 Entity types supported
52 Languages supported
0 Data stored
HIPAA Safe harbor compliant

The agentic stack has payment rails.
It has orchestration.
Now it has privacy.

Sentinel is the first privacy primitive purpose-built for autonomous agent workflows. Discoverable, provisionable, and payable by the agent itself.

Try the API