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.

To download a list of all public available voice models, simply make a get request to the following endpoint.

Note, each weight equals the internal identifier for the model and you will need it for further usage, as of now, our analytics do not display model usage, quality of the model or other statistic relevant information.

Example request


Get: https://api.revoice.live/voices.json

Get https://api.revoice.live/voices.json

Response:

{
    "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