Vapi Support Bot
03/31/2025, 9:43 PMsip:PHONE_ID@sip.vapi.ai;external_reference_id={SOME ID}
or simply sip:username@sip.vapi.ai
, where you can choose any username you prefer.
If you want to create a personalized origination SIP URI, you can do so using the Vapi API with this call:
curl --location 'https://api.vapi.ai/phone-number' \
--header 'Authorization: Bearer your-vapi-private-api-key' \
--header 'Content-Type: application/json' \
--data-raw '{
"provider": "vapi",
"sipUri": "sip:username@sip.vapi.ai",
"assistantId": "your-assistant-id"
}'
When configuring SIP trunking, remember that the hostname is always sip.vapi.ai
with UDP transport protocol, as mentioned in the [Vapi documentation](https://docs.vapi.ai/advanced/sip).
Is there anything specific about the Vapi SIP URI you're trying to set up that I can help with?
Sources:
- [Vapi Documentation SIP](https://docs.vapi.ai/advanced/sip)
- [Vapi Documentation SIP Telnyx](https://docs.vapi.ai/advanced/sip/telnyx)Toketo1
03/31/2025, 9:47 PM