Get Plan Limits
Check your organization’s phone number limits, pricing, and current balance.Endpoint
GET /v1/phone-numbers/plan-limits
Example Request
curl -X GET https://api.vonative.com/v1/phone-numbers/plan-limits \
-H "Authorization: Bearer YOUR_TOKEN"
Response
{
"success": true,
"data": {
"max_phone_numbers": 3,
"current_count": 1,
"is_allowed": true,
"plan_name": "standard",
"pricing": {
"phone_buy_fee": "5000.00",
"phone_monthly_fee": "1000.00",
"min_credit_balance": "7500.00",
"currency": "NGN"
},
"current_balance": "25000.00",
"localized_balance": "25000.00",
"localized_currency": "NGN"
}
}
Response Fields
| Field | Description |
|---|---|
max_phone_numbers | Maximum numbers allowed on your plan |
current_count | How many you currently own (including pending requests) |
is_allowed | Whether you can buy another number |
pricing.phone_buy_fee | One-time purchase cost (in local currency) |
pricing.phone_monthly_fee | Recurring monthly cost |
pricing.min_credit_balance | Minimum balance required |
current_balance | Your current credit balance |

