Read your rate limits
Return the call, text-message, and phone-number release limits in force for your organization, plus the paid 10DLC campaign submission limit. Each number is your organization's own override when one is set, otherwise the deployment default; zero means the action is blocked. Workflow runs have no separate organization limit — a run draws on these call and message limits, and its own caps live on its agent version.
Responses
- application/json
Request Example for get/v1/rate-limits
curl /v1/rate-limits \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"call": {
"per_minute": 1,
"per_hour": 1,
"per_day": 1,
"per_destination_per_day": 1
},
"message": {
"per_minute": 1,
"per_hour": 1,
"per_day": 1,
"per_destination_per_day": 1
},
"ten_dlc": {
"per_day": 1
},
"phone_number_release": {
"per_hour": 0,
"per_day": 0,
"per_month": 0
}
}
