Audio & Music · ElevenLabs

ElevenLabs

Voice synthesis, text-to-speech, sound effects, speech-to-text, and audio isolation.

Operational · 6 variants · ab $0.040
# Works with Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents
npx skills add runapi-ai/elevenlabs -g
The -g flag installs globally so every project picks it up.
Or paste this prompt to your AI agent:
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.
ÜBERBLICK

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
  • Fehlgeschlagene Generierungen werden nicht berechnet
VARIANTEN

Varianten

Variant Billing From
audio-isolation minute $0.120 Ansehen →
sound-effect-v2 minute $0.150 Ansehen →
speech-to-text minute $0.040 Ansehen →
text-to-dialogue-v3 1K chars $0.140 Ansehen →
text-to-speech-multilingual-v2 1K chars $0.120 Ansehen →
text-to-speech-turbo-v2.5 1K chars $0.060 Ansehen →
AGENT USAGE

Use this model from your agent

Prompt + SDK example
# 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.',
});
@runapi.ai/elevenlabs npm
SO FUNKTIONIERT ES

How to call this model

01

Install the skill

Add the model skill to your agent or install the SDK package.

02

Authenticate once

Use your RunAPI key for every supported model.

03

Send a request

Use the unified schema for the endpoint you need.

04

Receive output

Poll by task ID or handle the callback when the generation completes.

SDK QUICKSTART

SDK quickstart

runapi.ai
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"
)
@runapi.ai/elevenlabs v1
KONTEXT

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.

Provider
ElevenLabs
Modality
Audio & Music
WARUM RUNAPI

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.

FAQ

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?

Fehlgeschlagene Generierungen werden nicht berechnet

Can agents use it directly?

Yes. Install the model skill and your agent gets the docs, schema, and examples.

ÄHNLICHE MODELLE

Models similar to ElevenLabs

JETZT STARTEN

Start building with ElevenLabs.