> ## Documentation Index
> Fetch the complete documentation index at: https://raindrop.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Privacy and PII Redaction

> Maintain deep observability while maintaining the privacy of your user's conversations

By default, Raindrop stores and processes any and all data you send. This is done according to our [Data Security and Privacy](/docs/security/data-security-and-privacy) guidelines.

If you would like to prevent sensitive data from being stored, processed, or even sent to Raindrop in the first place - we provide a few options.

## PII Guard (Server Side Intelligent PII Redaction)

When events are received, Raindrop can intelligently strip PII from any user and model messages using a combination of pattern matching and AI models to detect and redact sensitive information. This is done at ingestion, meaning we only store the redacted version of the text and have no access to the original text.

You can customize the PII you want redacted in the [PII Playground](https://app.raindrop.ai/settings/pii) and your events will show up as redacted across the dashboard.

<img src="https://mintcdn.com/dawn-a6c57108/YCoyMFIX5t5vVRZm/images/pii-guard.png?fit=max&auto=format&n=YCoyMFIX5t5vVRZm&q=85&s=483ce66aa6375e4d869860957f6f9ab9" alt="PII Guard Playground" width="1866" height="1332" data-path="images/pii-guard.png" />

**Pricing**

PII Guard starts at \$80/mo and has the following usage based tiers:

| Number of Events           | Unit Price |
| :------------------------- | :--------- |
| **1 – 10,000**             | Free       |
| **10,001 – 200,000**       | \$0.0002   |
| **200,001 – 1,000,000**    | \$0.00015  |
| **1,000,001 – 5,000,000**  | \$0.000045 |
| **5,000,001 – 15,000,000** | \$0.00003  |
| **15,000,001 +**           | \$0.000022 |

You can enable PII Guard [here](https://app.raindrop.ai/settings/pii) or [contact us](mailto:founders@raindrop.ai) if you have any questions.

## SDK based redaction (Local)

You can also prevent common forms of PII from even being sent over the Internet in the first place. This is achieved by packaging a subset of our PII redaction code directly in our SDKs (currently only supported in the [Typescript SDK](/docs/sdk/typescript#pii-redaction) with plans to bring it to the other SDKs soon).

Since the this happens client side, only PII that can be matched using RegEx patterns can be redacted. To use intelligent redaction, we'd recommend using PII Guard instead.

Check out our [SDK docs](/docs/sdk/typescript) for instructions on enabling this.
