curl --location --request GET 'https://api.revocalize.ai/models'
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
"models": [
{
id: "andra",
name: "Andra",
gender: "female",
age: "adult",
description: "Popular pop singer with a powerful and dynamic vocal range. Her voice is characterized by its soulful quality, agility, and emotive expressiveness.",
base_language: "en",
traits: ["nasal", "powerful", "emotive", "dynamic", "soulful"],
genre: "pop"
voice_type: "tenor",
vocal_range: {
min: "C3",
max: "C7",
}
},
{
id: "smiley",
name: "Smiley",
gender: "male",
age: "young adult",
description: "Romanian musician and producer known for his smooth and versatile vocal style, which ranges from tender and emotive to powerful and dynamic.",
base_language: "ro",
traits: ["smooth", "versatile", "emotive", "dynamic", "expressive"],
genre: "r&b",
voice_type: "bass",
vocal_range: {
min: "E2",
max: "E4",
}
}
]
}
The /models endpoint returns the available AI Voice Models for your Revocalize account. Any of the available models can be used in the Voice Synthesis API to create audio generations.
curl --location --request GET 'https://api.revocalize.ai/models'
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
"models": [
{
id: "andra",
name: "Andra",
gender: "female",
age: "adult",
description: "Popular pop singer with a powerful and dynamic vocal range. Her voice is characterized by its soulful quality, agility, and emotive expressiveness.",
base_language: "en",
traits: ["nasal", "powerful", "emotive", "dynamic", "soulful"],
genre: "pop"
voice_type: "tenor",
vocal_range: {
min: "C3",
max: "C7",
}
},
{
id: "smiley",
name: "Smiley",
gender: "male",
age: "young adult",
description: "Romanian musician and producer known for his smooth and versatile vocal style, which ranges from tender and emotive to powerful and dynamic.",
base_language: "ro",
traits: ["smooth", "versatile", "emotive", "dynamic", "expressive"],
genre: "r&b",
voice_type: "bass",
vocal_range: {
min: "E2",
max: "E4",
}
}
]
}
Hide voice model object
voice_model parameter of the Voice Synthesis API.poprockhip-hopr&bcountryjazzclassicalelectronicworldothersoprano, mezzo-soprano, alto, tenor, baritone, bass.curl --location --request GET 'https://api.revocalize.ai/models'
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
"models": [
{
id: "andra",
name: "Andra",
gender: "female",
age: "adult",
description: "Popular pop singer with a powerful and dynamic vocal range. Her voice is characterized by its soulful quality, agility, and emotive expressiveness.",
base_language: "en",
traits: ["nasal", "powerful", "emotive", "dynamic", "soulful"],
genre: "pop"
voice_type: "tenor",
vocal_range: {
min: "C3",
max: "C7",
}
},
{
id: "smiley",
name: "Smiley",
gender: "male",
age: "young adult",
description: "Romanian musician and producer known for his smooth and versatile vocal style, which ranges from tender and emotive to powerful and dynamic.",
base_language: "ro",
traits: ["smooth", "versatile", "emotive", "dynamic", "expressive"],
genre: "r&b",
voice_type: "bass",
vocal_range: {
min: "E2",
max: "E4",
}
}
]
}