elevenLabs.getVoice requires voiceId. It returns the voice’s name, category, labels, description, preview URL, and available tiers when supplied by ElevenLabs.
automations/get-elevenlabs-voice.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns metadata for one ElevenLabs voice.
elevenLabs.getVoice requires voiceId. It returns the voice’s name, category, labels, description, preview URL, and available tiers when supplied by ElevenLabs.
import { automation, markSignificant, onInvocation } from "automate.ax"
import { elevenLabs } from "automate.ax/elevenlabs"
export default automation("Get voice", () => {
onInvocation()
markSignificant(elevenLabs.getVoice({ voiceId: "voice-id" }))
})