DanToy
08/27/2025, 2:41 AMChiranjeet Mishra
08/27/2025, 3:48 PM/call endpoint, you'll receive a controlUrl.
2. **Play Audio Clip**: Use the controlUrl to send a say command with the URL of your MP3 audio file. Here's a sample curl request:
bash
curl -X POST 'https://your-control-url' \
-H 'content-type: application/json' \
--data-raw '{
"type": "say",
"content": "[URL_OF_YOUR_AUDIO_CLIP]",
"endCallAfterSpoken": false
}'
Replace [URL_OF_YOUR_AUDIO_CLIP] with your actual audio file URL.
For further details, you can refer to Vapi's [Live Call Control](https://docs.vapi.ai/calls/call-features) documentation.
Please let us know if this works on your end.