elevenlabs
Installation
SKILL.md
Troubleshooting
If requests fail, run zero doctor check-connector --env-name ELEVENLABS_TOKEN or zero doctor check-connector --url https://api.elevenlabs.io/v1/voices --method GET
How to Use
All examples below assume you have ELEVENLABS_TOKEN set.
The base URL for the ElevenLabs API is:
https://api.elevenlabs.io/v1
1. List Available Voices
Get all voices available to your account:
curl -s -X GET "https://api.elevenlabs.io/v1/voices" --header "xi-api-key: $ELEVENLABS_TOKEN" | jq '.voices[] | {voice_id, name, category}'