Voice Models
Explore and select from our library of professional voice models for your audio conversions.
Overview
Voice models are the foundation of VoiceByAuribus conversions. Each model represents a unique voice with distinct characteristics that will be applied to your source audio while preserving the original content and timing.
Listing Voice Models
Retrieve the complete list of available voices:
curl -X GET https://api.auribus.io/api/v1/voices \
-H "Authorization: Bearer $TOKEN"
Response:
{
"success": true,
"data": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Sarah Mitchell",
"tags": ["female", "professional", "narration", "clear"],
"image_url": "https://cdn.example.com/voices/sarah-mitchell/image.jpg?signature=...",
"song_url": "https://cdn.example.com/voices/sarah-mitchell/preview.mp3?signature=..."
},
{
"id": "660e8400-e29b-41d4-a716-446655440001",
"name": "Marcus Johnson",
"tags": ["male", "deep", "authoritative", "announcer"],
"image_url": "https://cdn.example.com/voices/marcus-johnson/image.jpg?signature=...",
"song_url": "https://cdn.example.com/voices/marcus-johnson/preview.mp3?signature=..."
}
]
}
Response Fields
| Field | Description |
|---|---|
id | Unique identifier for the voice model (use this in conversion requests) |
name | Display name of the voice model |
tags | Descriptive tags for filtering and categorization (e.g., gender, style, use case) |
image_url | Pre-signed URL to the voice model profile image (time-limited; refetch to refresh) |
song_url | Pre-signed URL to the audio preview sample (time-limited; refetch to refresh) |
Getting Voice Model Details
Retrieve detailed information about a specific voice model:
curl -X GET https://api.auribus.io/api/v1/voices/{id} \
-H "Authorization: Bearer $TOKEN"
Example:
curl -X GET https://api.auribus.io/api/v1/voices/550e8400-e29b-41d4-a716-446655440000 \
-H "Authorization: Bearer $TOKEN"
Response:
{
"success": true,
"data": {
"id": "550e8400-e29b-41d4-a716-446655440000",
"name": "Sarah Mitchell",
"tags": ["female", "professional", "narration", "clear"],
"image_url": "https://cdn.example.com/voices/sarah-mitchell/image.jpg?signature=...",
"song_url": "https://cdn.example.com/voices/sarah-mitchell/preview.mp3?signature=..."
}
}
Previewing Voice Models
Before selecting a voice model for your conversion, listen to the audio preview:
- Get the list of available voices
- Note the
song_urlfor voices you're interested in - Play the audio preview to hear the voice model singing
- Copy the
idof your chosen voice model for the conversion request
Best Practice
Always listen to the song_url preview before creating conversions. This helps you select the voice that best matches your desired output style and quality.
Next Steps
- Upload Audio Files - Upload your source audio
- Create Voice Conversions - Transform your audio with a selected voice model