Orgil
09/23/2025, 5:20 AMVapi Support Bot
09/23/2025, 5:21 AMcompliancePlan.hipaaEnabled field in the response:
bash
curl -X GET "https://api.vapi.ai/assistant/{assistantId}" \
-H "Authorization: Bearer <token>"
If compliancePlan.hipaaEnabled is true, HIPAA is enabled for that assistant.
Note: Organization-level HIPAA status is not shown in the found API docs, but a similar approach may apply if an org-level endpoint exists.
Sources:
- [Vapi Assistants Structured Outputs Documentation](https://docs.vapi.ai/assistants/structured-outputs)
- [Vapi API Reference Get Assistant](https://docs.vapi.ai/api-reference/assistants/get?explorer=true)Vapi Support Bot
09/23/2025, 5:22 AMChiranjeet Mishra
09/23/2025, 4:54 PMhipaaEnabled configuration in your assistant settings. This setting prevents the storage of call logs, recordings, or transcriptions, aligning with HIPAA standards. Here's how you can enable it:
json
{
"hipaaEnabled": true
}
Additionally, be cautious to only pass protected health information (PHI) through the /call endpoint, and avoid storing PHI on Vapi's platform to maintain compliance. You can read more details in the [HIPAA Compliance guide](https://docs.vapi.ai/security-and-privacy/hipaa).