Hi! Quick question — I created a custom voice usin...
# support
p
Can I just pass its voiceId like this in the assistant config to use it in Vapi calls? json Копировать Редактировать "voice": { "voiceId": "voice_abc123...", "provider": "11labs", "speed": 0.9 } Will it work with your built-in ElevenLabs integration (so it's included in the free 1000 minutes)? Or do I need to use my own ElevenLabs API key for custom voices? Thanks!
v
To use your custom ElevenLabs voice in Vapi, you need to add your own ElevenLabs API key in the Vapi dashboard. Once added, you can reference your custom voiceId in your assistant config like this:
Copy code
json
"voice": {
  "provider": "11labs",
  "voiceId": "voice_abc123...",
  "speed": 0.9
}
Custom voices require your own API key and are not included in the built-in free 1000 minutes. For details, see the [Vapi ElevenLabs custom voice guide](https://docs.vapi.ai/customization/custom-voices/elevenlabs). Sources: - [Vapi Docs ElevenLabs Custom Voices](https://docs.vapi.ai/customization/custom-voices/elevenlabs) - [Vapi Docs Provider Keys](https://docs.vapi.ai/customization/provider-keys)
k
You can pass the voice Id in your assistant config to use 11Labs voices with Vapi’s built-in integration it's doesn't including 1,000 free minutes, but for custom voices outside their library, you’ll need your own 11Labs API key.
v
To use your custom ElevenLabs voice in Vapi, you must add your own ElevenLabs API key in the Vapi dashboard. Then, reference your custom voiceId in your assistant config like this:
Copy code
json
"voice": {
  "provider": "11labs",
  "voiceId": "voice_abc123...",
  "speed": 0.9
}
Custom voices require your own API key and are not included in the built-in free 1000 minutes. See the [Vapi ElevenLabs custom voice guide](https://docs.vapi.ai/customization/custom-voices/elevenlabs) for details. Sources: - [Vapi Docs ElevenLabs Custom Voices](https://docs.vapi.ai/customization/custom-voices/elevenlabs) - [Vapi Docs Provider Keys](https://docs.vapi.ai/customization/provider-keys)
k
Yes, it is included in it.
2 Views