Skip to main content
GET
/
api
/
user
/
voice-profiles
/
Get User Voice Profiles API Endpoint
curl --request GET \
  --url https://backend.clipvision.ai/api/user/voice-profiles/ \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "voice_profile_id": 1,
    "disabled": false,
    "profile_name": "New Voice Profile",
    "api_key": "api_key",
    "region": "westus2",
    "provider_id": "elevenlabs",
    "provider_name": "ElevenLabs"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

Successfully retrieved the user voice profiles

voice_profile_id
integer
disabled
boolean
profile_name
string
api_key
string
region
string
provider_id
string
provider_name
string