Get Transcript
curl --request GET \
--url https://api.agentline.cloud/v1/calls/{call_id}/transcript \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/calls/{call_id}/transcript"
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/calls/{call_id}/transcript', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Calls
Get Transcript
Get the full conversation transcript for a call.
Returns the complete speech-to-text transcript of the phone call, with each turn labeled by role (“human” for the caller, “assistant” for the AI agent). Useful for reviewing what was said on the call, extracting information, or auditing AI agent behavior.
GET
/
v1
/
calls
/
{call_id}
/
transcript
Get Transcript
curl --request GET \
--url https://api.agentline.cloud/v1/calls/{call_id}/transcript \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.agentline.cloud/v1/calls/{call_id}/transcript"
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/calls/{call_id}/transcript', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}