Search for available WhatsApp-capable numbers on Vobiz, purchase new ones, or verify and connect an existing number through BYON (bring your own number).
curl --request GET \
--url https://api.example.com/v1/messaging/numbers/whatsapp/availabilityAuthentication:Documentation Index
Fetch the complete documentation index at: https://docs.vobiz.ai/llms.txt
Use this file to discover all available pages before exploring further.
X-Auth-ID, X-Auth-Token, Accept: application/json
GET https://api.vobiz.ai/v1/messaging/numbers/whatsapp/availability
| Param | Required | Description |
|---|---|---|
country | Yes | ISO country code (e.g. IN, US) |
region | No | State/region filter |
curl -X GET \
"https://api.vobiz.ai/v1/messaging/numbers/whatsapp/availability?country=IN" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}"
POST https://api.vobiz.ai/v1/messaging/numbers/whatsapp/orders
curl -X POST \
"https://api.vobiz.ai/v1/messaging/numbers/whatsapp/orders" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}" \
-H "Content-Type: application/json" \
-d '{"country_code":"IN","region":"MH","number_type":"local","preferred_number":"+919876543210","currency":"INR"}'
POST https://api.vobiz.ai/v1/messaging/numbers/whatsapp/bring-your-own/verify
sms or voice as the delivery method.
curl -X POST \
"https://api.vobiz.ai/v1/messaging/numbers/whatsapp/bring-your-own/verify" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}" \
-H "Content-Type: application/json" \
-d '{"phone_number":"+919876543210","verification_method":"sms"}'
POST https://api.vobiz.ai/v1/messaging/numbers/whatsapp/bring-your-own/confirm
curl -X POST \
"https://api.vobiz.ai/v1/messaging/numbers/whatsapp/bring-your-own/confirm" \
-H "X-Auth-ID: {auth_id}" \
-H "X-Auth-Token: {auth_token}" \
-H "Content-Type: application/json" \
-d '{"phone_number":"+919876543210","otp_code":"123456"}'
Was this page helpful?
curl --request GET \
--url https://api.example.com/v1/messaging/numbers/whatsapp/availability