ElevenLabs speech, dialogue, sound, and audio client for RunAPI
Project description
Elevenlabs API Python SDK for RunAPI
The elevenlabs api Python SDK is the language-specific package for ElevenLabs on RunAPI. Use this elevenlabs api package for voice, dialogue, transcription, sound effect, and cleanup flows when your application needs JSON request bodies, task status lookup, and consistent RunAPI errors in Python.
This elevenlabs api README is the Python package guide inside the public elevenlabs-sdk repository. For the repository overview, start at ../README.md; for model details, use https://runapi.ai/models/elevenlabs; for API reference, use https://runapi.ai/docs#elevenlabs; for SDK docs, use https://runapi.ai/docs#sdk-elevenlabs.
Install
pip install runapi-elevenlabs
Quick start
from runapi.elevenlabs import ElevenlabsClient
client = ElevenlabsClient() # reads RUNAPI_API_KEY, or pass api_key="sk-..."
task = client.text_to_speech.create(
model="text-to-speech-turbo-v2.5",
text="Hello from RunAPI",
)
status = client.text_to_speech.get(task.id)
transcription = client.speech_to_text.create(
source_audio_url="https://example.com/clip.mp3",
)
Use create when you want to submit a task and return quickly, get when you need the latest task state, and run when a script should create and poll until completion:
result = client.text_to_speech.run(
model="text-to-speech-turbo-v2.5",
text="A calm narrator voice reading the morning news",
)
print(result.audios[0].url)
In web request handlers, prefer create plus webhook or later get polling so a worker is not held open.
RunAPI-generated file URLs are temporary. Download and store generated images, videos, audio, or other files in your own durable storage within 7 days; do not treat returned URLs as long-term assets.
Language notes
Pass parameters as keyword arguments and catch the runapi.elevenlabs error classes when building audio jobs or scripts. The available resources are text_to_speech, text_to_dialogue, text_to_sound, speech_to_text, and isolate_audio. Keep RUNAPI_API_KEY in the environment or your secret manager; never commit API keys or callback secrets.
Links
- Model page: https://runapi.ai/models/elevenlabs
- SDK docs: https://runapi.ai/docs#sdk-elevenlabs
- Product docs: https://runapi.ai/docs#elevenlabs
- Pricing and rate limits: https://runapi.ai/models/elevenlabs/text-to-speech-turbo-v2.5
- Provider comparison: https://runapi.ai/providers/elevenlabs
- Full catalog: https://runapi.ai/models
- Repository: https://github.com/runapi-ai/elevenlabs-sdk
License
Licensed under the Apache License, Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file runapi_elevenlabs-0.1.0.tar.gz.
File metadata
- Download URL: runapi_elevenlabs-0.1.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d047dbf45e731da9accb00fd45cdf312a2125a6270408ae7c0ebf0fa2a6613c
|
|
| MD5 |
9f4f225b56369b7534fe3cf57c8cd7db
|
|
| BLAKE2b-256 |
5383e8895ef8d02ab74e319382029a6f553c2188b22ed92b5f456239af72fc6f
|
File details
Details for the file runapi_elevenlabs-0.1.0-py3-none-any.whl.
File metadata
- Download URL: runapi_elevenlabs-0.1.0-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3426debac8f7216932b695f5ef954adca1999c32422eb8952ce39307694c7f5f
|
|
| MD5 |
e95904fd3b6d43238e3207df63b3dfdc
|
|
| BLAKE2b-256 |
735199fbfe0232999a336a4cf26ac1f973b6302b829ca1cee154ab9f47e717b5
|