The Ultravox API is available at https://api.ultravox.ai/api/.
https://api.ultravox.ai/api/
When making API calls, pass your key in using the X-API-Key header.
X-API-Key
Here’s an example showing how to use the fictional API key aBCDef.123456 to get a list of calls.
aBCDef.123456
curl --request GET \--url https://api.ultravox.ai/api/calls \--header 'X-API-Key: aBCDef.123456'
fetch('https://api.ultravox.ai/api/calls', { method: 'GET', headers: { 'X-API-Key': 'aBCDef.123456' }}).then(response => response.json()).then(data => console.log(data)).catch(error => console.error('Error:', error));