HIPAA Compliance

Learn how to ensure privacy when using Vapi's voice assistant platform.

Introduction to Privacy at Vapi

At Vapi, we are committed to delivering exceptional voice assistant services while upholding the highest standards of privacy and data protection for our users. We understand the importance of balancing service quality with the need to respect and protect personal and sensitive information. Our privacy policies and practices are designed to give you control over your data while benefiting from the full capabilities of our platform.

Understanding HIPAA Compliance Basics

The Health Insurance Portability and Accountability Act (HIPAA) is a United States legislation that provides data privacy and security provisions for safeguarding medical information. HIPAA compliance is crucial for any entity that deals with protected health information (PHI), ensuring that sensitive patient data is handled, stored, and transmitted with the highest standards of security and confidentiality. The key concepts of HIPAA compliance include the Privacy Rule, which protects the privacy of individually identifiable health information; the Security Rule, which sets standards for the security of electronic protected health information (e-PHI); and the Breach Notification Rule, which requires covered entities to notify individuals, HHS, and in some cases, the media of a breach of unsecured PHI. Compliance with these rules is not just about adhering to legal requirements but also about building trust with your customers by demonstrating your commitment to protecting their sensitive data.

Understanding Default Settings

By default, Vapi records your calls and stores logs and transcriptions. This practice is aimed at continuously improving the quality of our service, ensuring that you receive the best possible experience. However, we recognize the importance of privacy and provide options for users who prefer more control over their data.

Opting for Privacy: The HIPAA Compliance Option

For users prioritizing privacy, particularly in compliance with the Health Insurance Portability and Accountability Act (HIPAA). Choosing HIPAA compliance through our platform ensures that you can still use our voice assistant services without compromising on privacy requirements.

Enabling HIPAA Compliance

HIPAA compliance can be ensured by turning on HIPAA compliance in the Dashboard. This simple yet effective setting guarantees that your call logs, recordings, or transcriptions are stored in a HIPAA compliant manner during or after your calls.

To enable HIPAA compliance:

1

Confirm eligibility

HIPAA mode requires an Enterprise subscription or a separately purchased HIPAA add-on. Contact your account team to confirm which applies to your organization.

2

Sign the Business Associate Agreement (BAA)

Vapi requires a signed BAA before you enable HIPAA mode. Contact security@vapi.ai to start this process.

3

Enable HIPAA mode in the Dashboard

In the Vapi Dashboard, go to Organization > Settings > Billing & Add-Ons and turn on HIPAA. This is an organization-level setting. It applies to every assistant in your organization, with no per-assistant exception, and it cannot be enabled through the API.

4

Switch to compliant providers

Update any assistant using a non-compliant LLM, voice, or transcriber provider. See HIPAA compliant providers for the full list. Vapi rejects configuration changes that select a non-compliant provider while HIPAA mode is on. Your call records, transcripts, and logs are then stored in a HIPAA compliant manner.

HIPAA mode and Zero Data Retention (ZDR) are mutually exclusive. Disable one before enabling the other. See Zero Data Retention (ZDR).

HIPAA Compliant providers

When enabling HIPAA compliance, only HIPAA compliant providers may be chosen.

Model Providers (LLM)

  • OpenAI
  • Azure OpenAI
  • Anthropic
  • Anthropic Bedrock
  • Anthropic Vertex
  • Google
  • Custom LLM
  • Baseten
  • Together AI
  • xAI

Voice Providers (TTS)

  • Vapi
  • ElevenLabs
  • Cartesia
  • Rime AI
  • Deepgram
  • Azure
  • xAI

Transcription Providers (STT)

  • Azure
  • Deepgram
  • Soniox
  • xAI

FAQs

Enabling HIPAA compliance does not degrade the quality of the voice assistant services. However, it limits access to certain features, such as reviewing call logs or transcriptions, that some users may find valuable for quality improvement purposes.

This feature is particularly useful for businesses and organizations in the healthcare sector or any entity that handles sensitive health information and must comply with HIPAA regulations.

Yes, your organization can toggle HIPAA mode on or off from the Dashboard as needed. Consider the implications carefully first: turning HIPAA mode off applies to your entire organization, not just one assistant.

Where can PHI be used with Vapi?

When using Vapi with PHI, you may only pass PHI through the /call endpoint. All other endpoints in the API Reference should not contain PHI. For example, you should not put PHI in an /assistant prompt or in a /phone-number label. The restriction applies to all configuration endpoints where data would be stored on Vapi’s platform.

No, there are no designated “HIPAA-safe endpoints.” Instead, when HIPAA mode is turned on, Vapi will only use HIPAA-compliant services (such as Azure OpenAI) for processing PHI through the pipeline. The voice pipeline (STT → LLM → TTS) can process PHI when properly configured, but Vapi does not store this data outside its HIPAA-compliant storage.

HIPAA Compliance Configuration

Enable HIPAA mode at the organization level, from the Vapi Dashboard. This is the only way to enable HIPAA compliance, and it applies to every assistant in your organization. There is no per-assistant HIPAA setting.

No. Even when using your own HIPAA-compliant provider keys, it remains your responsibility not to store PHI via Vapi’s endpoints. The model keys are a separate concern from the storage of PHI on Vapi’s platform. You must both use HIPAA-compliant keys AND ensure you’re not storing PHI on Vapi.

Structured Outputs with HIPAA Mode

When HIPAA mode is enabled, Vapi does not store structured outputs by default. This protects privacy but limits your ability to use structured outputs in Insights and Call Logs. For non-sensitive outputs, you can override this behavior.

By default, when HIPAA mode is on, Vapi doesn’t store structured outputs. This keeps data private but limits your ability to use structured outputs in Insights and Call Logs.

You can enable storage for specific structured outputs using the compliancePlan.forceStoreOnHipaaEnabled setting. This allows you to store non-sensitive outputs even when HIPAA mode is active.

Important: Your organization is responsible for ensuring that any structured output with storage enabled does NOT extract or generate PHI or sensitive data. Only use this for non-sensitive information.

Enable storage ONLY for structured outputs that extract non-sensitive, non-PHI information.

Safe use cases:

  • Boolean outcomes: appointmentBooked: true/false
  • Call success indicators: issueResolved: true/false
  • General categories: issueCategory: "billing" | "technical" | "general"
  • Satisfaction scores: csatScore: 1-10
  • Call sentiment: sentiment: "positive" | "neutral" | "negative"

Never enable storage for:

  • Patient diagnosis information
  • Medical record numbers
  • Social security numbers
  • Credit card details
  • Patient names, dates of birth, or contact information
  • Treatment plans or medication information

Warning: Enabling storage for outputs containing PHI violates HIPAA compliance and your BAA with Vapi.

You can enable storage for specific structured outputs via the Dashboard or API.

Via Dashboard:

  1. Navigate to Structured Outputs in the left sidebar
  2. Create or edit a structured output
  3. Expand the Compliance Settings section
  4. Enable the toggle for “Enable Storage of Structured Outputs while on HIPAA Mode”
  5. Only enable if your output does not extract sensitive information

Via API:

When creating a structured output:

1 {
2 "name": "Appointment Booked",
3 "type": "ai",
4 "schema": {
5 "type": "boolean",
6 "description": "Whether an appointment was successfully booked"
7 },
8 "compliancePlan": {
9 "forceStoreOnHipaaEnabled": true
10 }
11 }

When updating a structured output:

1 {
2 "compliancePlan": {
3 "forceStoreOnHipaaEnabled": true
4 }
5 }

IMPORTANT: Only set forceStoreOnHipaaEnabled: true if you are certain your structured output does NOT extract PHI or sensitive data. Your organization is responsible for ensuring compliance. Misuse could result in BAA violations.

Best Practices

  • Enable HIPAA mode at the organization level, from the Dashboard
  • Ensure that PHI only passes through the call pipeline and is not stored in configuration
  • Use HIPAA-compliant accounts with all third-party providers (STT, LLM, TTS)
  • Never use real PHI in an organization that has not enabled HIPAA mode, including for testing or demos
  • Remember that call recordings, transcripts, and logs are still stored, in Vapi’s private HIPAA-compliant storage, unless you configure your own storage

No. HIPAA mode is enabled at the organization level and applies to every assistant in that organization. There is no way to exclude a specific assistant. If your organization has not enabled HIPAA mode, none of your assistants are HIPAA-compliant, regardless of any other configuration. Never use real PHI until HIPAA mode is enabled for your organization.

Under the Business Associate Agreement (BAA), you agree:

  1. Not to introduce PHI onto Vapi’s platform through its API or dashboard except as permitted
  2. To use HIPAA-compliant accounts with external providers when providing keys
  3. To only use HIPAA-compliant providers that Vapi has signed a BAA with when not providing keys. See HIPAA compliant providers for the current list.
  4. To use the platform in accordance with all BAA requirements

Retrieving Call Artifacts from Private Storage

For HIPAA-enabled organizations, call recordings and logs are stored in a private bucket and cannot be downloaded directly from the URLs returned in webhooks or API responses. To retrieve recordings, call logs, or other artifacts, call the Vapi API with your Private API Key, see Retrieve call artifacts for the full list of endpoints and example requests. This retrieval method is the same for HIPAA and non-HIPAA organizations alike.

Need Further Assistance?

If you have more questions about privacy, HIPAA compliance, or how to configure your Vapi assistant, our support team is here to help. Contact us at security@vapi.ai for personalized assistance and more information on how to make the most of Vapi’s voice assistant platform while ensuring your data remains protected.