diff --git a/chapters/audio-intelligence/index.mdx b/chapters/audio-intelligence/index.mdx
index a147226..0c6e055 100644
--- a/chapters/audio-intelligence/index.mdx
+++ b/chapters/audio-intelligence/index.mdx
@@ -32,6 +32,14 @@ Use these capabilities alongside Live or Pre-recorded STT to automate workflows
Detect and categorize key entities like people, organizations, dates, and more.
+
+ Automatically redact names, emails, vehicle IDs, and other PII in pre-recorded transcripts.
+
+
+```json Pre-recorded
+{
+ "audio_url": "YOUR_AUDIO_URL",
+ "pii_redaction": true
+}
+```
+
+
+## Optional configuration
+
+You can customize the behavior with `pii_redaction_config`:
+
+
+ Preset or list of PII entity types to redact (e.g. `["GDPR"]`).
+ See [Named Entity Recognition](/chapters/audio-intelligence/named-entity-recognition#supported-entities) for supported entity types.
+
+
+ How to replace detected PII:
+ - **`MARKER`**: Placeholder labels like `[NAME_1]`, `[EMAIL_1]`. Same entity will have same ID.
+ - **`MASK`**: Each character replaced by a mask (e.g. "John Smith" → `#### #####`)
+
+
+## Example body
+
+```json
+{
+ "audio_url": "YOUR_AUDIO_URL",
+ "pii_redaction": true,
+ "pii_redaction_config": {
+ "entity_types": ["GDPR"],
+ "processed_text_type": "MARKER"
+ }
+}
+```
+
+## Example output
+
+**Without PII redaction (raw transcript):**
+
+> Hi, I'm calling about the order for John Smith. Can you confirm the delivery to john.smith@company.com? Yes, John Smith placed it yesterday.
+
+**With PII redaction (`processed_text_type="MASK"`):**
+
+> Hi, I'm calling about the order for #### #####. Can you confirm the delivery to ######################? Yes, #### ##### placed it yesterday.
+
+**With PII redaction (`processed_text_type="MARKER"`):**
+
+> Hi, I'm calling about the order for [NAME_1]. Can you confirm the delivery to [EMAIL_1]? Yes, [NAME_1] placed it yesterday.
+
+The same entity mentioned multiple times receives the **same marker ID** (e.g. "John Smith" becomes [NAME_1] both times), so you can track references across the transcript while keeping sensitive data redacted. \
+This consistency is also useful for downstream tasks using LLMs, which can reason about entities (e.g. "the person in [NAME_1]") without ever seeing the raw PII.
diff --git a/chapters/pre-recorded-stt/features/index.mdx b/chapters/pre-recorded-stt/features/index.mdx
index 5d75942..88248c9 100644
--- a/chapters/pre-recorded-stt/features/index.mdx
+++ b/chapters/pre-recorded-stt/features/index.mdx
@@ -13,6 +13,13 @@ The core functionality of the Gladia API is its Speech Recognition model, design
>
Detect speakers and understand who said what, and when.
+
+ Automatically redact names, emails, vehicle IDs, and other PII in pre-recorded transcripts.
+