Kalki
09/29/2025, 1:04 PMVapi Support Bot
09/29/2025, 1:05 PMjs
// Pseudocode for proxying requests
app.post('/voiceflow-proxy', async (req, res) => {
const vapiResponse = await fetch('https://api.vapi.ai/text-completion', { method: 'POST', body: req.body });
res.send(await vapiResponse.json());
});
This setup allows Voiceflow to send requests to your proxy, which then communicates with Vapi and returns responses to Voiceflow. For more details, see the [Vapi x Voiceflow documentation](https://docs.vapi.ai/providers/voiceflow).
Source:
- [Vapi x Voiceflow](https://docs.vapi.ai/providers/voiceflow)Kalki
09/29/2025, 1:30 PMChiranjeet Mishra
10/01/2025, 9:05 AM