ElevenLabs V3 iconSpeech APIActive

elevenlabs-v3 API

Generate ultra-realistic multi-voice dialogue with the ElevenLabs V3 API via API in One. Natural-sounding AI voices with multi-character conversations. 28 credits per 1000 characters.

Real routes1Real endpoint rows linked to this model.
Endpoint models1Live models sharing this endpoint.
Base cost1 credits$0.01 · 3–10 seconds
Endpoint familySpeech API/api/v1/audio/speech
Model IDelevenlabs-v3

Use this in the request body model field.

Endpoint/api/v1/audio/speech

The currently implemented BFF route.

Outputaudio

Input types: text

AuthBearer API key

Keys are managed by the shared dashboard.

WebhookSupported

Use callback_url on supported async tasks.

Service highlights

Marketplace-style signals backed by the current live route, without copying external SLA, discount, login, or payment claims.

Live production route

This page only shows endpoints implemented under /api/v1. /api/v1/audio/speech

Webhook / polling

Use callback_url when supported, or poll the task status route for results.

Shared billing system

Top-up, orders, credit balance, and profile continue through the existing shared console.

Managed provider credentials

Your browser only holds an API in One key; provider calls stay server-side.

Call contract

Use these fields to integrate the current live model route.

Base URL
https://apiin.one
Clients call same-origin APIs; the server BFF forwards to the Worker.
Authorization
Authorization: Bearer <API_KEY>
Managed by the existing Dashboard API Keys page.
Model field
elevenlabs-v3
Send this value in the request body model field.
Result path
/api/v1/tasks/{task_id}
Async jobs return task_id, then use status polling.
Billing path
/billing/credits
Uses the existing credits, orders, and top-up logic.

Runtime behavior

This model creates an async task, returns a task_id, then resolves through the real status route.

Client request/api/v1/audio/speechtask_id -> result
View usage logs

API Console

Switch between real models on this endpoint, choose a live route, and generate request examples from the current catalog payload.

Live model1 live models
Endpoint1 Routes
ProviderElevenLabshttps://n58.gogloai.com
Current cost1 credits · $0.011 credit minimum (~$0.01), then 28 credits per 1000 chars (~$0.28)
RuntimeAsync taskAsync jobs return task_id, then use status polling.
Input / outputtext -> audioUse callback_url when supported, or poll the task status route for results.
Backend nodenode58Your browser only holds an API in One key; provider calls stay server-side.
Request previewPOST /api/v1/audio/speech
curl --request POST \
  --url https://apiin.one/api/v1/audio/speech \
  --header 'Authorization: Bearer <API_KEY>'
  --header 'Content-Type: application/json' \
  --data-raw '{
  "model": "elevenlabs-v3",
  "dialogue": [
    {
      "text": "Hello, welcome to API in One.",
      "voice": "narrator"
    },
    {
      "text": "Thank you! Tell me more about this platform.",
      "voice": "user"
    }
  ],
  "stability": 0.5,
  "language_code": "auto"
}'
Result path/api/v1/tasks/{task_id}
Open docs

Endpoint decision panel

Evaluate cost, provider coverage, and production integration behavior across live models on this implemented endpoint.

Endpoint models1These models share the same BFF route and switch through the model field.
Provider coverage1Real provider sources currently exposed by this endpoint.
Cost range1 credits$0.01-$0.01 · Based on the current live catalog base credit cost.
Webhook coverage1/1Models on this endpoint that support callback_url.
Current model position1/1

Sorted by base credits from low to high.

Lowest-cost route in this endpointelevenlabs-v3

ElevenLabs · 1 credits · $0.01

Production patternAsync task + webhook/polling

Use callback_url when supported, or poll the task status route for results.

Live capabilities

These capabilities come from the current model config and backend route. Unreleased APIs are not listed.

Multi

Multi-character dialogue in a single request

Use the same API in One key as the rest of the routed catalog

Use the same API in One key as the rest of the routed catalog

30+ languages with automatic language detection

30+ languages with automatic language detection

Same API key for TTS

Same API key for TTS, images, video, music, and chat

Request format

Clients call same-origin API routes; the server BFF forwards to the matching Worker.

Parameters

dialoguearray

Array of dialogue items: [{text: "...", voice: "..."}]. Voice is optional.

Required
stabilitynumber

Voice stability (0–1). Lower = more variation, higher = more consistent.

Optional · Default 0.5
language_codestring

Language code (e.g. en, zh, ja) or "auto" for detection

Optional · Default auto

Example request

curl -X POST https://apiin.one/api/v1/audio/speech \
  -H "Authorization: Bearer aio_your_api_key" \
  -H "Content-Type: application/json" \
  --data-raw '{
  "model": "elevenlabs-v3",
  "dialogue": [
    {
      "text": "Hello, welcome to API in One.",
      "voice": "narrator"
    },
    {
      "text": "Thank you! Tell me more about this platform.",
      "voice": "user"
    }
  ],
  "stability": 0.5,
  "language_code": "auto"
}'

Integration flow

These steps use the current live route and shared account system; login, payment, orders, credits, and profile remain shared.

01

Create a shared API key

Create a key in the existing dashboard. Top-up, orders, credit balance, and profile stay in the shared console.

02

Call the real endpoint

Send a request with the endpoint, model id, and parameters shown on this page. /api/v1/audio/speech

03

Poll task status

Async media and tool jobs use /api/v1/tasks/{task_id}; chat models return a direct response.

Task status route

After creating image, video, audio, or tool tasks, poll the real task endpoint for results.

GET/api/v1/tasks/{task_id}Check generation task status and result.

Pricing

1 credit minimum (~$0.01), then 28 credits per 1000 chars (~$0.28)

Base cost$0.01
Credits1
BillingSuccessful requests

Use cases

These workflows are supported by the current model and backend node.

01

Generate multi-character dialogue for podcasts and audiobooks

02

Build voice-enabled chatbots and virtual assistants

03

Create audiobook content with multiple narrators

04

Generate multilingual voice content for global audiences

FAQ

How much does the ElevenLabs API cost through API in One?

Pricing is 28 credits per 1000 characters (~$0.28). The final cost scales with text length.

What languages does the ElevenLabs V3 API support?

ElevenLabs V3 supports 30+ languages. Set language_code to "auto" for automatic detection or specify a language code.

Can I create multi-voice dialogue?

Yes. The dialogue parameter accepts an array of objects, each with text and an optional voice. This enables multi-character conversations.

What is the stability parameter?

The stability parameter (0–1) controls voice consistency. Lower values (0.3) add more variation, higher values (0.8) produce more consistent output. Default is 0.5.

Related live models