Vapi is an advanced voice AI infrastructure that enables developers to integrate sophisticated voice capabilities into their applications. Vapi’s voice recognition, natural language understanding, and voice synthesis features help create more intuitive and engaging user interactions.
This guide outlines integrating Vapi with Plivo via SIP (Session Initiation Protocol). There are two key steps:
Follow these steps to route outbound calls from Vapi through Plivo.
1. Log in to the Plivo console: Plivo Login.
2. Navigate to Zentrunk (SIP) → Outbound Trunk → IP Access Control List: Access Control List.
3. Create a new IP Access Control List.
4. Navigate to Create Outbound Trunks: Create Outbound Trunk.
5. Provide a name and select the IP Access Control List created in the previous step.
6. After creating the trunk, copy the termination SIP domain (e.g., ***********.zt.plivo.com).
7. Follow the steps in this guide to purchase a number from Plivo.
1. Log in to the Vapi dashboard: Vapi Dashboard.
2. Retrieve your Vapi API Key.
3. Create a SIP trunk in Vapi using the Plivo termination SIP domain:
curl -X POST https://api.vapi.ai/credential \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-vapi-private-api-key" \
-d '{
"provider": "byo-sip-trunk",
"name": "PLIVO Trunk",
"gateways": [{ "ip": "***********.zt.plivo.com" }]
}'
4. Create a phone number and associate it with the newly created SIP trunk:
curl -X POST https://api.vapi.ai/phone-number \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your-vapi-private-api-key" \
-d '{
"provider": "byo-phone-number",
"name": "PLIVO SIP Number",
"number": "1833684XXXX",
"numberE164CheckEnabled": false,
"credentialId": "a2c815b8-03f4-40f5-813c-xxxxxxxxxxxx"
}'
5. Note the phone number ID from the response. 6. Follow this guide to create an assistant in Vapi.
Use the phone number ID, assistant ID, and a destination number to place an outbound call via the Vapi API.
curl --location 'https://api.vapi.ai/call/phone' \
--header 'Authorization: Bearer your-vapi-private-api-key' \
--header 'Content-Type: application/json' \
--data '{
"assistantId": "29d47d31-ba3c-451c-86ce-xxxxxxxxx",
"customer": {
"number": "9199437XXXXX",
"numberE164CheckEnabled": false
},
"phoneNumberId": "eba2fb13-259f-4123-abfa-xxxxxxxxxxx"
}'
The call should be routed through the Plivo trunk and successfully connect to the destination number.
Follow these steps to route inbound calls from Plivo to Vapi.
1. Log in to the Plivo Console: Plivo Login.
2. Navigate to Zentrunk (SIP) → Inbound Trunks → Origination URI.
3. Create a new IP URI with the following details.
- Name: Choose a name.
- URI: Enter the Vapi SIP URI: sip.vapi.ai;transport=udp.
1. Navigate to Zentrunk (SIP) → Inbound Trunks → Trunks → Create New Inbound Trunk.
2. Provide a name for the trunk.
3. Select the Primary URI created in the previous step.
4. Create the trunk.
1. Purchase or use an existing phone number from Plivo.
2. Attach it to the newly created inbound trunk.
Now, any incoming calls to this number will be routed to Vapi using SIP trunking.