DEMO FOR

Shroud × Ophelia

Automated PHI redaction for opioid use disorder treatment communications

Your evidence-based approach needs evidence-based privacy

PHI Redaction Demo
Click "Redact PHI" to see the redacted version

Integration in your Node.js backend

// npm install @shroud/sdk
import { Shroud } from "@shroud/sdk";

const shroud = new Shroud({ apiKey: process.env.SHROUD_KEY });

// In your chat message processing function
export async function processMessage(message) {
  const redacted = await shroud.redact(message);
  
  // Now safe to log, analyze, or store
  console.log(redacted);
  return redacted;
}

// Example usage with your message data
const message = "Patient MRN 8471293, DOB 1990-05-15, prescribed 8mg Suboxone";
processMessage(message).then(console.log);
Get started with Shroud