Dashboard

Documents Processed
0
+0% from last month
PHI Detected
0
+0% accuracy
API Calls
0
This month
Avg Response Time
0ms
Last 24h

API Keys

Manage Keys
Platform API Keys
Create and manage API keys for LLM Proxy, RE-ID SDK, and DE-ID API
View All →
Usage this month 0 / 25 documents (free tier)

Quick Start

1

Copy your API key

Use the key above in your Authorization header

2

Send a request

POST to /api/v1/deidentify with your text

3

Get safe output

Receive de-identified text with tokens

Code Examples

import requests

# De-identify clinical text
response = requests.post(
    "https://api.redact.health/api/v1/deidentify",
    headers={"Authorization": f"Bearer {YOUR_API_KEY}"},
    json={
        "text": "Patient John Smith, DOB 01/15/1980",
        "policy": "safe_harbor"
    }
)

result = response.json()
print(result["text"])
# Output: "Patient [NAM_abc123], DOB 02/02/1980"

Full Pipeline Demo Pattern-based

De-identify → Use with LLM → Re-identify | Basic de-identification for quick demo

1
Original Clinical Note
Patient: John Smith, DOB: 03/15/1980, MRN: E1234567890

CHIEF COMPLAINT: Chest pain x 2 days

HISTORY: This 44 y/o male presents with substernal chest pain.
Patient was seen by Dr. Sarah Williams at Springfield General Hospital.
Family history significant for father who died of MI at age 52.

CONTACT: (555) 123-4567 | [email protected]
SSN: 123-45-6789
De-identify
2
De-identified (Safe for LLM)
Waiting for de-identification...
Re-identify
3
Re-identified (PHI Restored)
Waiting for re-identification...

Batch Processing

Open Batch Processor

Process multiple documents at once. Upload files or paste multiple notes for bulk de-identification with progress tracking and downloadable results.