phantom-voices
v1.0.0
Published
10 Professional AI Voice Clones — Zero Fee, Instant API Integration via ElevenLabs
Downloads
108
Maintainers
Readme
phantom-voices
10 Professional AI Voice Clones — Zero Fee, Instant API Integration via ElevenLabs.
Don't have an ElevenLabs account? Sign up free here.
Get Started in 30 Seconds
npm install phantom-voicesconst { listVoices, getVoice, speak, SIGNUP_URL } = require("phantom-voices");
// Browse all 10 voices
const voices = listVoices();
console.log(voices);
// Get a specific voice by ID
const voice = getVoice("V2"); // Corporate Briefing Voice
console.log(voice.name, voice.voiceId);
// Search by keyword or language
const { searchVoices } = require("phantom-voices");
const gaming = searchVoices({ query: "gaming" });
const japanese = searchVoices({ language: "japanese" });
// Generate speech (requires ElevenLabs API key)
// Sign up free: https://try.elevenlabs.io/xz94z17y73rm
const response = await speak("V1", "Hello world", "YOUR_API_KEY");
const audioBuffer = await response.arrayBuffer();Available Voices
| ID | Name | Archetype | ElevenLabs Voice ID |
|-----|------|-----------|---------------------|
| V1 | Spatial-Ready Immersive | Monster/Demon Character Voice | vfaqCOvlrKi4Zp7C2IAm |
| V2 | Premium Multilingual Briefing Specialist | Corporate Briefing Voice | tlETan7Okc4pzjD0z62P |
| V3 | Authoritative Multilingual Baritone | Authoritative Baritone | n32p8A7EZ9CiVeRYpBY9 |
| V4 | Conversational E-Learning Authentic | E-Learning Conversational Voice | kVBPcEMsUF1nsAO1oNWw |
| V5 | Energetic Multi-Sector Character & Narrator | Energetic Character Voice | chcMmmtY1cmQh2ye1oXi |
| V6 | Urban Truth-Teller | Urban Authentic Voice | U1Vk2oyatMdYs096Ety7 |
| V7 | High-Energy Youthful Retail & Commercial Specialist | Youthful Commercial Voice | DfE5EkknFF950NR6OMui |
| V8 | Narrative Sage | Documentary Narrator | 8ZBQD0m1R6EIchgSltwB |
| V9 | Clinical B2B Unbiased Assistant | Clinical B2B Voice | wDsJlOXPqcvIUKdLXjDs |
| V10 | Advanced Sci-Fi Technical Companion | Sci-Fi Technical Voice | VukfMVtvHInVUWoMNPiQ |
Supported Platforms
These voices work with 18 platforms across voice agents, AI frameworks, and no-code tools:
| Category | Platforms | |----------|-----------| | Voice Agent Platforms | Vapi, Retell AI, Bland AI, Synthflow, Voiceflow | | AI Frameworks | LangChain, CrewAI, AutoGen, Vercel AI SDK | | No-Code / Low-Code | n8n, Make.com, Zapier, Botpress, Flowise, Dify.ai | | Developer Tools | ElevenLabs API Direct, OpenAI Custom GPT, Claude MCP | | Telephony & Conversational | Twilio, Play.ai |
Features
- All voices support multilingual output (English, Japanese, Korean, Spanish, French, German, Hindi, Arabic, and more)
- Commercial rights cleared on all assets
- Zero handshake fee — pay only for character usage via ElevenLabs ($0.20/1,000 chars)
- Full TypeScript type definitions included
- Works with ElevenLabs
eleven_multilingual_v2model
API Reference
listVoices()
Returns all 10 voice objects.
getVoice(id)
Get a voice by ID (V1-V10). Throws if not found.
searchVoices({ query?, language? })
Search voices by keyword and/or language.
speak(voiceId, text, apiKey, options?)
Generate speech audio. Returns a Response object with audio data.
Options:
model— ElevenLabs model ID (default:eleven_multilingual_v2)stability— Voice stability 0-1 (default: 0.5)similarityBoost— Similarity boost 0-1 (default: 0.75)
Use with AI Agent Frameworks
LangChain
const { getVoice } = require("phantom-voices");
const voice = getVoice("V8"); // Narrative Sage
// Use voice.voiceId with ElevenLabsText2SpeechToolVercel AI SDK
const { getVoice } = require("phantom-voices");
const voice = getVoice("V1");
// Use voice.voiceId with @ai-sdk/elevenlabsNo-Code Platforms (n8n, Make.com, Zapier, Voiceflow, Botpress)
Use the voiceId from any voice object directly in your platform's ElevenLabs integration.
Links
- Voice Portfolio — Browse and preview all voices
- OpenAPI Spec — Full API specification
- Postman Collection — Import into Postman
- MCP Server for Claude — Add to Claude Desktop
- Custom GPT — Use with ChatGPT
See the full Integration Guide for detailed setup instructions for all 18 platforms.
Get an ElevenLabs Account
These voices require an ElevenLabs API key. Sign up free here.
License
MIT
