Concurrent call limits control the maximum number of simultaneous outbound calls allowed on an account. This limit applies globally across all outbound voice profiles.Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Default limits
New accounts start with a default concurrent call limit that increases based on account verification:| Verification level | Concurrent calls |
|---|---|
| Initial setup | 2 |
| Level 2 verification completed | 10 |
| Custom limit (contact support) | 10+ |
Error handling
When the application attempts to establish a call that exceeds the configured limit, Telnyx returns a SIP 403 error:Implementing retry logic
Implement exponential backoff when handling limit errors:Monitoring
Track concurrent call usage to prevent limit errors:Via API
Use GET /v2/calls and filter forstatus: active to get the current concurrent call count.
Webhook monitoring
Track call lifecycle events using Voice API webhooks:call.initiated- Increment countercall.hangup- Decrement counter
Best practices
- Set alerts - Configure monitoring to alert when usage reaches 80% of the limit
- Implement queueing - Queue calls when approaching limits rather than failing immediately
- Monitor trends - Track peak usage patterns to anticipate when limit increases are needed
- Test error handling - Verify the application handles 403 limit errors gracefully
Requesting limit increases
For concurrent call limits exceeding 10 channels, contact support@telnyx.com. Include the following information in the request:- Current concurrent call requirement
- Expected growth trajectory
- Use case description (required for limits exceeding 100 channels)