Get Available Voices
curl --request GET \
--url https://api.agentline.cloud/v1/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agentline.cloud/v1/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Voice
Get Available Voices
List all available voice presets for AI phone agents.
Returns named TTS (text-to-speech) voice presets that can be used when configuring AI agents or making phone calls. Each voice defines how your AI agent sounds on the phone.
You can use a preset name (e.g. “female-1”, “male-1”) or pass any valid Cartesia voice UUID directly as a voice_id.
GET
/
v1
/
voices
Get Available Voices
curl --request GET \
--url https://api.agentline.cloud/v1/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.agentline.cloud/v1/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
AgentLine API key. Get one via the email OTP flow (POST /v1/auth/otp then POST /v1/auth/verify). Pass as: Authorization: Bearer sk_live_...
Response
200 - application/json
Successful Response