npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

phantom-voices

v1.0.0

Published

10 Professional AI Voice Clones — Zero Fee, Instant API Integration via ElevenLabs

Downloads

108

Readme

phantom-voices

npm version License: MIT 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-voices
const { 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_v2 model

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 ElevenLabsText2SpeechTool

Vercel AI SDK

const { getVoice } = require("phantom-voices");
const voice = getVoice("V1");
// Use voice.voiceId with @ai-sdk/elevenlabs

No-Code Platforms (n8n, Make.com, Zapier, Voiceflow, Botpress)

Use the voiceId from any voice object directly in your platform's ElevenLabs integration.


Links

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