Free Plan Limits
# support
a
What are the free plan limits? I can't find precise/transparent information on the documentation regarding the exact limits 1) is there a call concurrency limit for web calls on the free plan? 2) is there a max duration call limit on free plan? I have a few calls that ended after 10 minutes with max duration exceeded as ended reason
v
Hi there! 👋 I understand you're looking for information about Vapi's free plan limits. I wasn't able to find a comprehensive list of all free plan limitations, but I can definitely help with your specific questions about call concurrency and duration limits. ### Call Concurrency Limit for Web Calls Yes, there is a call concurrency limit for web calls on the free plan. According to the [billing limits documentation](https://docs.vapi.ai/billing/billing-limits), the default concurrency limit is 10 simultaneous calls (inbound and outbound calls combined) at the account level. This limit applies to both web calls and phone calls, as confirmed in [Discord discussions](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336441893395103820). ### Maximum Call Duration Limit Regarding your second question about calls ending after 10 minutes with "max duration exceeded" - this appears to be a known issue that several users have experienced. According to [user reports](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1300510582717419561), calls have been ending at 10 minutes with the "max duration exceeded" reason, even when the assistant is configured for longer durations (like 30 minutes). The issue might be related to an empty "max duration seconds" value for your assistant. You can update your assistant's max duration via API using a curl command:
Copy code
curl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
  "maxDurationSeconds": 1800
}'
According to [Discord discussions](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653), the maximum value for
maxDurationSeconds
is 12 hours, and the minimum value is 10 seconds. Other free plan limits I found include: - Only being able to call US numbers using Vapi's free telephony numbers
- A maximum of 10 outbound calls a day using Vapi numbers - A limit of 10 free numbers per wallet Is there anything else you'd like to know about these limits or any other aspects of the Vapi free plan? Sources: - [Billing Limits Documentation](https://docs.vapi.ai/billing/billing-limits) - [Discord Discussion on Concurrency Limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336441893395103820) - [Discord Discussion on Call Duration Issues](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1300510582717419561) - [Discord Discussion on Max Duration Configuration](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
v
Message marked as helpful by @Ali! 🎉
p
checking if this is resolved/solved for you?
v
Message marked as helpful by @Mohit! 🎉
2 Views