How hippa pricing works
# support
g
I would like to know how much i have to pay per call for hippa
v
Vapi's HIPAA-compliant pricing is $0.05 per minute, with no extra fee just for enabling HIPAA. To estimate your cost per call, multiply the call duration (in minutes) by $0.05:
Copy code
python
call_minutes = 3  # Example: 3-minute call
cost = call_minutes * 0.05
print(f"Cost for HIPAA-compliant call: ${cost:.2f}")
Note: This does not include any additional provider costs (e.g., for speech-to-text or LLM services). For high-volume needs, you can contact Vapi for enterprise pricing options. Sources: - [Vapi Pricing After 1000 Minutes (Discord)](https://discord.com/channels/1211482211119796234/1369028756592791662) - [Vapi Billing: Estimating Costs](https://docs.vapi.ai/billing/estimating-costs) - [Vapi Security and Privacy: HIPAA](https://docs.vapi.ai/security-and-privacy/hipaa)
k
Please reach out if you have any additional questions regarding this