API Reference

v2.4.0-stable

Integrate Studio-Quality Voices

Our REST API allows you to programmatically generate ultra-realistic speech, manage projects, and deploy voice-enabled features directly into your application's workflow.

terminal

Interactive Sandbox Ready

key

API Key Management

Production Main sk_live_••••••••••••••••3a9f
Staging/Testing sk_test_••••••••••••••••88d2

Never share your secret keys in client-side code. Use environment variables.

Current Usage

12.4k

Total API Requests

Monthly Limit 82%

Resets in 6 days

Core Endpoints

book

Auth Specs

warning

Rate Limits

POST /v2/generate
curl --request POST \
  --url https://api.voiceovers.digital/v2/generate \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "text": "Welcome to the future of digital audio.",
    "voice_id": "v-studio-01-male",
    "speed": 1.0,
    "format": "mp3"
  }'
Response Body 200 OK
{
  "status": "success",
  "request_id": "req_8829x99a",
  "audio_url": "https://cdn.voiceovers.digital/temp/a_99z.mp3",
  "duration_seconds": 3.4
}