Get call details
curl --request GET \
--url https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "call-uuid-1",
"call_id": "lk_call_abc123",
"customer_name": "Hans Meier",
"customer_request": "Frage zu Rechnung #1234",
"phone_number": "+491701234567",
"duration": 180,
"done": true,
"general_success": true,
"final_score": 8,
"disconnection_reason": "user_hangup",
"call_summary": "Kunde fragte nach Rechnung #1234. Agent konnte Frage beantworten.",
"transcript": "[{\"role\":\"agent\",\"text\":\"Guten Tag...\"}]",
"audio_file_url": "https://storage.example.com/calls/abc123.wav",
"employee": "Max Mustermann",
"note": "Rueckruf vereinbart fuer Donnerstag",
"is_purged": false,
"deleted_at": null,
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"created_at": "2026-03-19T10:30:00Z",
"updated_at": "2026-03-19T10:35:00Z"
}Calls
Get call details
Returns full call details including transcript and audio URL.
Purged calls (is_purged: true) have had their personal data removed by
the retention process — expect transcript, audio_file_url, and
phone_number to be null.
GET
/
v1
/
agents
/
{agentId}
/
calls
/
{callId}
Get call details
curl --request GET \
--url https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.talkpilot.io/v1/agents/{agentId}/calls/{callId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"id": "call-uuid-1",
"call_id": "lk_call_abc123",
"customer_name": "Hans Meier",
"customer_request": "Frage zu Rechnung #1234",
"phone_number": "+491701234567",
"duration": 180,
"done": true,
"general_success": true,
"final_score": 8,
"disconnection_reason": "user_hangup",
"call_summary": "Kunde fragte nach Rechnung #1234. Agent konnte Frage beantworten.",
"transcript": "[{\"role\":\"agent\",\"text\":\"Guten Tag...\"}]",
"audio_file_url": "https://storage.example.com/calls/abc123.wav",
"employee": "Max Mustermann",
"note": "Rueckruf vereinbart fuer Donnerstag",
"is_purged": false,
"deleted_at": null,
"agent_id": "550e8400-e29b-41d4-a716-446655440000",
"created_at": "2026-03-19T10:30:00Z",
"updated_at": "2026-03-19T10:35:00Z"
}Authorizations
API key for external access. Format: tp_live_<32-hex-chars>.
Create keys in the TalkPilot Dashboard under Settings > API.
Response
Call details
Full call details including transcript and audio URL
External call ID (e.g. LiveKit)
Call duration in seconds
busy, no_answer and dial_error occur on outbound calls only
Available options:
user_hangup, agent_hangup, call_transfer, unknown, busy, no_answer, dial_error Assigned employee name
JSON string of conversation messages
Recording URL as stored by the voice agent. Not re-signed by the API — it may have expired; use the Dashboard for playback
AI-generated quality score (1-10)
Required range:
1 <= x <= 10