ElevenLabs
Voice synthesis, text-to-speech, sound effects, speech-to-text, and audio isolation.
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/elevenlabs -g
Install the ElevenLabs skill for me: 1. Clone https://github.com/runapi-ai/elevenlabs 2. Copy the skills/elevenlabs/ directory into your user-level skills directory (e.g. ~/.claude/skills/ for Claude Code, ~/.codex/skills/ for Codex). 3. Verify that SKILL.md is present. 4. Confirm the install path when done.
ElevenLabs provides a suite of voice AI models covering text-to-speech, dialogue generation, sound effect creation, speech-to-text transcription, and audio isolation. Its TTS models support multiple languages with natural prosody.
- Installable agent skill
- Unified API key
- SDK examples included
- 실패한 생성은 과금되지 않습니다
변형
Use this model from your agent
# User prompt to the agent
"Convert this paragraph into natural speech with a warm British male voice, moderate pace."
// Code generated by the agent via @runapi.ai/elevenlabs
import { ElevenlabsClient } from '@runapi.ai/elevenlabs';
const client = new ElevenlabsClient();
const result = await client.isolateAudio.run({
model: 'audio-isolation',
prompt: 'Convert this paragraph into natural speech with a warm British male voice, moderate pace.',
});
How to call this model
Install the skill
Add the model skill to your agent or install the SDK package.
Authenticate once
Use your RunAPI key for every supported model.
Send a request
Use the unified schema for the endpoint you need.
Receive output
Poll by task ID or handle the callback when the generation completes.
SDK quickstart
curl -X POST https://runapi.ai/api/v1/elevenlabs/isolate_audio \
-H "Authorization: Bearer $RUNAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "audio-isolation",
"audio_url": "https://cdn.runapi.ai/public/samples/voice.mp3"
}'
import { ElevenlabsClient } from "@runapi.ai/elevenlabs";
const client = new ElevenlabsClient();
const result = await client.isolateAudio.run({
model: "audio-isolation",
audio_url: "https://cdn.runapi.ai/public/samples/voice.mp3",
});
require "runapi/elevenlabs"
client = RunApi::Elevenlabs::Client.new
result = client.isolate_audio.run(
model: "audio-isolation",
audio_url: "https://cdn.runapi.ai/public/samples/voice.mp3"
)
Where ElevenLabs fits
ElevenLabs is a voice AI company whose models cover TTS, dialogue, sound effects, transcription, and audio isolation. Through RunAPI, all ElevenLabs endpoints share one key and per-call billing.
Why use ElevenLabs through RunAPI
One API key
Use the same credentials across models and providers.
Agent-ready
Installable skills include docs and schema for tool calls.
Predictable billing
Usage-based pricing is visible before you call.
Frequently asked questions
How do I call this model?
Use the RunAPI SDK, CLI, or REST endpoint shown on this page.
Do failed generations cost money?
실패한 생성은 과금되지 않습니다
Can agents use it directly?
Yes. Install the model skill and your agent gets the docs, schema, and examples.