1 Minute Free Time for Everyday -

  Create Your AI Video Right Now!

Create Santa Videos Win iPhone 16

×
    
    
        
Generate Videos/Images

Get Voice List

Get the voice list

Start with the API

GET https://devapi.vidnoz.com/v2/voice/list

Request Attributes

Parameter Required Type Description
personal false bool Is it a cloned voice: true = cloned voice; false = official voice (default)

Example

Request Attributes


        curl  --request GET \
        --url https://devapi.vidnoz.com/v2/voice/list?personal=false \
        --header "accept: application/json" \
        --header "Authorization: Bearer $API_KEY" \
        

Response Attributes

Parameter Type Description
voices array Voice List
voices.id string Voice ID
voices.name string Voice Name
voices.gender string Voice gender:male;female;unknown
voices.language string Voice gender:male;female;unknown
voices.emotions array Emotion List:normal,happy,sad,cheerful,chat......
voices.preview_flag_url string Flag Image Link
voices.preview_image_url string Avatar Image Link
voices.preview_audio_url string Preview Audio Link

Example

Response Attributes

{
        "code": 200,
        "message": "ok",
        "data": {
            "voices": [
                {
                    "id": "d0VWUk5SU056NEwwMlRsem5vNVROYlpCc3FGY25CY0xBa3VIeWtLUkRyMD0=",
                    "name": "Libby",
                    "gender": "female",
                    "language": "en",
                    "emotions": [
                        "normal"
                    ],
                    "preview_flag_url": "https://static-alter1.vidnoz.com/system/asset/202308/64d9aca5a983a.png",
                    "preview_image_url": "https://static-alter1.vidnoz.com/system/asset/202501/67889471bea7f.png",
                    "preview_audio_url": "https://static-alter1.vidnoz.com/system/asset/202308/64db429bb8f6f.wav"
                },
                {
                    "id": "TlBobkQvR3lNZDE2SGpoaXpnTWJ1cC8waUVvcTcwdm1EaVJVSmZ6dEdJND0=",
                    "name": "My Clone Voice",
                    "gender": "male",
                    "language": "en",
                    "emotions": [],
                    "preview_flag_url": "",
                    "preview_image_url": "",
                    "preview_audio_url": "https://r2-aivid-005-prod.214dcedd27630abef236dcb67de0ce92.r2.cloudflarestorage.com/demo/user_id/20230228/63fd77917565b.mp4?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=91ac9d3ee865be05c575d38c9bdd1275%2F20250310%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20250310T014228Z&X-Amz-SignedHeaders=host&X-Amz-Expires=604800&X-Amz-Signature=67bae2210bb4e088d241f9c2f3d08960c36a701d38279d3769939f7badaf4144"
                }
            ]
        }
}