Healthcare PII redaction

Protect patient data in
implant cost logs.

Shroud scrubs PHI/PII from surgery logs before they hit your systems. Drop in one SDK call to redact MRNs, implant costs, and patient names.

Implant cost visibility

Keep procedure cost analytics intact while scrubbing MRNs, patient names, and device serials from raw logs.

HIPAA-compliant logging

"US surgery centers spend ~$7B a year on implants, and in orthopedic and spine cases the implant alone runs ~40-60% of the total cost of the procedure." — YC Healthcare

One-liner integration

Wrap your Python logger with `shroud.redact()` and ship. No schema changes, no data governance workshop.

YOUR DATA
CLEANED LOG
Output will appear here...
Integration snippet

Python logger wrapper

# pip install shroud
import logging
from shroud import Client

shroud = Client(api_key="sk_live_...")

class ShroudedLogger:
    def __init__(self, logger):
        self._logger = logger

    def info(self, msg):
        clean = shroud.redact(msg, types=["MRN", "AMOUNT", "NAME", "DOB", "CARD"])
        self._logger.info(clean)

logging.basicConfig(level=logging.INFO)
logger = ShroudedLogger(logging.getLogger())
logger.info("Patient Jonah (DOB 1995-08-12) received implant S/N 8A4C2B9F, MRN 8471293, cost $24,680")