Get Account Voice
curl --request GET \
--url https://api.agentline.cloud/v1/account/voice \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/account/voice"
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/account/voice', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Voice
Get Account Voice
Get the current account-level default voice for AI phone agents.
Returns which voice is used for all AI agents under this account unless overridden at the agent level or per-call. Controls how your AI agents sound during phone conversations.
GET
/
v1
/
account
/
voice
Get Account Voice
curl --request GET \
--url https://api.agentline.cloud/v1/account/voice \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/account/voice"
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/account/voice', 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