
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
elevenlabs-api
Advanced tools
A library to convert text to speech using the Eleven Labs API (This is an unofficial JS API)
You can install this library using npm:
npm install elevenlabs-api
Here's an example of how you can use this library:
const elevenLabsAPI = require('elevenlabs-api');
var text = 'This is a test';
var apiKey = 'your api key here';
var voice_id = 'your voice id here';
var filename ° 'audio.mp3';
try {
textToSpeech(apiKey, text, voice_id, filename);
console.log(`Success, Audio saved as: ${filename}`);
} catch (error) {
console.error(`An error occurred while converting text to speech: ${error}`);
}
//If you need stream
const fs = require('fs');
const stream = fs.createReadStream(filename);
stream.pipe(process.stdout);
{
"voices": [
{
"voice_id": "21m00Tcm4TlvDq8ikWAM",
"name": "Rachel (american, mellow)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/21m00Tcm4TlvDq8ikWAM/dff5d82d-d16d-45b9-ae73-be2ad8850855.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "AZnzlk1XvdvUeBnXmlld",
"name": "Domi (american, engaged)",
"samples": [],
"category": "dynamic",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/AZnzlk1XvdvUeBnXmlld/53bd2f5f-bb59-4146-9922-245b2a466c80.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "EXAVITQu4vr4xnSDxMaL",
"name": "Bella (American, soft)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/EXAVITQu4vr4xnSDxMaL/53bd2f5f-bb59-4146-8822-245b2a466c80.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "ErXwobaYiN019PkySvjV",
"name": "Antoni (American, modulated)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/ErXwobaYiN019PkySvjV/53bd2f5f-bb59-1111-8822-225b2a466c80.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "MF3mGyEYCl7XYWbV9V6O",
"name": "Elli (american, clear)",
"samples": [],
"category": "dynamic",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/MF3mGyEYCl7XYWbV9V6O/bea2dc16-9abf-4162-b011-66531458e022.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "TxGEqnHWrfWFTfGW9XjX",
"name": "Josh (american, silvery)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/TxGEqnHWrfWFTfGW9XjX/bdc4303c-a20d-4cec-97eb-dca625044eac.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "VR6AewLTigWG4xSOukaG",
"name": "Arnold (american, nasal)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/VR6AewLTigWG4xSOukaG/2c4395e7-91b1-44cd-8f0f-e4aebd292461.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "pNInz6obpgDQGcFmaJgB",
"name": "Adam (American, clear)",
"samples": [],
"category": "conversational",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/pNInz6obpgDQGcFmaJgB/53bd2f5f-bb59-1111-8822-245b2a466c80.mp3",
"available_for_tiers": [],
"settings": null
},
{
"voice_id": "yoZ06aMxZJJ28mfd3POQ",
"name": "Sam (american, dynamic)",
"samples": [],
"category": "dynamic",
"preview_url": "https://storage.googleapis.com/eleven-public-prod/premade/voices/yoZ06aMxZJJ28mfd3POQ/1c4d417c-ba80-4de8-874a-a1c57987ea63.mp3",
"available_for_tiers": [],
"settings": null
}
]
}
After you successfully run the code, a file will be created (the file name you stated)
This library is released under the MIT License. See LICENSE for more details.
FAQs
A library to convert text to speech using the Eleven Labs API
The npm package elevenlabs-api receives a total of 7 weekly downloads. As such, elevenlabs-api popularity was classified as not popular.
We found that elevenlabs-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.