Get a list of all available voices
Endpoint serves the voices.json file which contains all available voices and their corresponding data, this endpoint has cache control headers as the voice library is in subject of constant change.
Example request
Get https://api.revoice.live/voices.json{
"voices": [
{
"weight": "weight_62nh7prayvcnevbg2hq5qp1r8", //internal_identifier
"name": "Jesse Pinkman ", //display_name
"modelType": "tts", //by default tts, soon more types available
"creator": "revoice.live", //creator of the model
"image": "https://i.ibb.co/DbptZ9j/3223cd3e-19b4-4720-b646-2830fe579978.jpg" //display image
},
{
"weight": "weight_0f762jdzgsy1dhpb86qxy4ssm",
"name": "Rick Sanchez 2.0",
"modelType": "tts",
"creator": "revoice.live",
"image": "https://i.ibb.co/x75XkDj/4615f93e-91c6-4538-b4a7-04bf00ac78dc.jpg"
},
{
"weight": "weight_0bsxzrwp6p77t67s8dcn607wf",
"name": "Walter White ",
"modelType": "tts",
"creator": "revoice.live",
"image": "https://i.ibb.co/xjm9xzs/f5a14905-ad43-46e7-a4db-fef12cfe089e.webp"
},
{
"weight": "weight_2ekv0zz1545pdbcn14919p028",
"name": "2Pac (Tupac Amaru Shakur) ",
"modelType": "tts",
"creator": "revoice.live",
"image": null
}
//about 3000 entries
]
}Last updated