Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
curl --request GET \
--url https://backend.clipvision.ai/api/text-to-speech-providers/ \
--header 'Authorization: Basic <encoded-value>'[
{
"provider_name": "ElevenLabs",
"provider_id": "elevenlabs",
"provider_logo": "https://elevenlabs.io/favicon.ico",
"home_page": "https://elevenlabs.io/"
},
{
"provider_name": "TikTok TTS",
"provider_id": "tiktok",
"provider_logo": "https://www.tiktok.com/favicon.ico",
"home_page": "https://tiktok.com"
},
{
"provider_name": "Microsoft Azure",
"provider_id": "azure",
"provider_logo": "https://azure.microsoft.com/favicon.ico?v2",
"home_page": "https://azure.microsoft.com/en-us/products/ai-services/text-to-speech"
}
]This API endpoint allows retrieval of supported Text-To-Speech providers.
curl --request GET \
--url https://backend.clipvision.ai/api/text-to-speech-providers/ \
--header 'Authorization: Basic <encoded-value>'[
{
"provider_name": "ElevenLabs",
"provider_id": "elevenlabs",
"provider_logo": "https://elevenlabs.io/favicon.ico",
"home_page": "https://elevenlabs.io/"
},
{
"provider_name": "TikTok TTS",
"provider_id": "tiktok",
"provider_logo": "https://www.tiktok.com/favicon.ico",
"home_page": "https://tiktok.com"
},
{
"provider_name": "Microsoft Azure",
"provider_id": "azure",
"provider_logo": "https://azure.microsoft.com/favicon.ico?v2",
"home_page": "https://azure.microsoft.com/en-us/products/ai-services/text-to-speech"
}
]Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.