curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices" \
-H "Authorization: Bearer your_api_key"
# With filters
curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional" \
-H "Authorization: Bearer your_api_key"
import requests
url = "https://app.axeimmo.com/api/public/v1/resources/voices"
headers = {
"Authorization": "Bearer your_api_key"
}
# Get all voices
response = requests.get(url, headers=headers)
voices = response.json()
# Filter for English female voices
params = {
"language": "en",
"gender": "female",
"tags": "professional,friendly"
}
response = requests.get(url, headers=headers, params=params)
filtered_voices = response.json()
print(f"Found {len(filtered_voices)} matching voices")
for voice in filtered_voices:
print(f"- {voice['name']} ({voice['id']})")
// Get all voices
const response = await fetch('https://app.axeimmo.com/api/public/v1/resources/voices', {
headers: {
'Authorization': 'Bearer your_api_key'
}
});
const data = await response.json();
console.log(`Found ${data.length} voices`);
// Filter for specific criteria
const filteredResponse = await fetch(
'https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional',
{
headers: {
'Authorization': 'Bearer your_api_key'
}
}
);
const filteredData = await filteredResponse.json();
console.log('Filtered voices:', filteredData);
[
{
"id": "voice_en_us_female_sarah",
"name": "Sarah",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["professional", "warm", "news"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_us_female_sarah.mp3"
},
{
"id": "voice_en_uk_male_james",
"name": "James",
"language": "en",
"accent": "UK",
"gender": "male",
"tags": ["authoritative", "documentary", "deep"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_uk_male_james.mp3"
},
{
"id": "voice_fr_fr_female_marie",
"name": "Marie",
"language": "fr",
"accent": "FR",
"gender": "female",
"tags": ["elegant", "professional", "clear"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_fr_fr_female_marie.mp3"
},
{
"id": "custom_voice_user_123",
"name": "My Custom Voice",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["custom", "brand"],
"preview": "https://storage.axeimmo.com/voices/previews/custom_voice_user_123.mp3"
}
]
Resources
List Available Voices
Get list of available voices for video generation
GET
/
api
/
public
/
v1
/
resources
/
voices
curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices" \
-H "Authorization: Bearer your_api_key"
# With filters
curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional" \
-H "Authorization: Bearer your_api_key"
import requests
url = "https://app.axeimmo.com/api/public/v1/resources/voices"
headers = {
"Authorization": "Bearer your_api_key"
}
# Get all voices
response = requests.get(url, headers=headers)
voices = response.json()
# Filter for English female voices
params = {
"language": "en",
"gender": "female",
"tags": "professional,friendly"
}
response = requests.get(url, headers=headers, params=params)
filtered_voices = response.json()
print(f"Found {len(filtered_voices)} matching voices")
for voice in filtered_voices:
print(f"- {voice['name']} ({voice['id']})")
// Get all voices
const response = await fetch('https://app.axeimmo.com/api/public/v1/resources/voices', {
headers: {
'Authorization': 'Bearer your_api_key'
}
});
const data = await response.json();
console.log(`Found ${data.length} voices`);
// Filter for specific criteria
const filteredResponse = await fetch(
'https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional',
{
headers: {
'Authorization': 'Bearer your_api_key'
}
}
);
const filteredData = await filteredResponse.json();
console.log('Filtered voices:', filteredData);
[
{
"id": "voice_en_us_female_sarah",
"name": "Sarah",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["professional", "warm", "news"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_us_female_sarah.mp3"
},
{
"id": "voice_en_uk_male_james",
"name": "James",
"language": "en",
"accent": "UK",
"gender": "male",
"tags": ["authoritative", "documentary", "deep"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_uk_male_james.mp3"
},
{
"id": "voice_fr_fr_female_marie",
"name": "Marie",
"language": "fr",
"accent": "FR",
"gender": "female",
"tags": ["elegant", "professional", "clear"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_fr_fr_female_marie.mp3"
},
{
"id": "custom_voice_user_123",
"name": "My Custom Voice",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["custom", "brand"],
"preview": "https://storage.axeimmo.com/voices/previews/custom_voice_user_123.mp3"
}
]
Overview
This endpoint returns all available voices that you can use in video generation. The voices are filtered based on your plan level, and include both system voices and any custom voices you’ve uploaded.Authentication
This endpoint requires API key authentication. Include your API key in the
Authorization header.Query Parameters
string
Filter voices by language code (e.g., “en”, “fr”, “es”, “de”).
string
Filter voices by gender:
male or female.string
Comma-separated list of tags to filter by (e.g., “professional,friendly”).
Response
Array of available voice objects:string
Unique identifier for the voice (use this in generation requests).
string
Human-readable name of the voice.
string
Language code (e.g., “en”, “fr”, “es”).
string
Specific accent or region (e.g., “US”, “UK”, “CA”).
string
Voice gender:
male or female.array
Array of descriptive tags (e.g., [“professional”, “warm”, “energetic”]).
string
URL to a short audio preview of the voice.
Example
curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices" \
-H "Authorization: Bearer your_api_key"
# With filters
curl -X GET "https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional" \
-H "Authorization: Bearer your_api_key"
import requests
url = "https://app.axeimmo.com/api/public/v1/resources/voices"
headers = {
"Authorization": "Bearer your_api_key"
}
# Get all voices
response = requests.get(url, headers=headers)
voices = response.json()
# Filter for English female voices
params = {
"language": "en",
"gender": "female",
"tags": "professional,friendly"
}
response = requests.get(url, headers=headers, params=params)
filtered_voices = response.json()
print(f"Found {len(filtered_voices)} matching voices")
for voice in filtered_voices:
print(f"- {voice['name']} ({voice['id']})")
// Get all voices
const response = await fetch('https://app.axeimmo.com/api/public/v1/resources/voices', {
headers: {
'Authorization': 'Bearer your_api_key'
}
});
const data = await response.json();
console.log(`Found ${data.length} voices`);
// Filter for specific criteria
const filteredResponse = await fetch(
'https://app.axeimmo.com/api/public/v1/resources/voices?language=en&gender=female&tags=professional',
{
headers: {
'Authorization': 'Bearer your_api_key'
}
}
);
const filteredData = await filteredResponse.json();
console.log('Filtered voices:', filteredData);
[
{
"id": "voice_en_us_female_sarah",
"name": "Sarah",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["professional", "warm", "news"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_us_female_sarah.mp3"
},
{
"id": "voice_en_uk_male_james",
"name": "James",
"language": "en",
"accent": "UK",
"gender": "male",
"tags": ["authoritative", "documentary", "deep"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_en_uk_male_james.mp3"
},
{
"id": "voice_fr_fr_female_marie",
"name": "Marie",
"language": "fr",
"accent": "FR",
"gender": "female",
"tags": ["elegant", "professional", "clear"],
"preview": "https://storage.axeimmo.com/voices/previews/voice_fr_fr_female_marie.mp3"
},
{
"id": "custom_voice_user_123",
"name": "My Custom Voice",
"language": "en",
"accent": "US",
"gender": "female",
"tags": ["custom", "brand"],
"preview": "https://storage.axeimmo.com/voices/previews/custom_voice_user_123.mp3"
}
]
⌘I

