Get call details
curl --request GET \
--url https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}"
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}', 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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}",
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}"
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}")
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{
"agent_name": "<string>",
"call_type": "<string>",
"callback_for": "<string>",
"cost_usd": "<string>",
"detected_intents": [
"<string>"
],
"direction": "<string>",
"duration_seconds": 123,
"ended_at": "<string>",
"evaluations": [
{
"created_at": "<string>",
"extracted_value": "<string>",
"id": "<string>",
"outcome_definition_id": "<string>",
"outcome_key": "<string>",
"reasoning": "<string>",
"result_boolean": true
}
],
"from_number": "<string>",
"id": "<string>",
"initial_agent_id": "<string>",
"is_trace_available": true,
"organization_id": "<string>",
"participating_agent_ids": [
"<string>"
],
"prospect_email": "<string>",
"prospect_external_id": "<string>",
"prospect_first_name": "<string>",
"prospect_id": "<string>",
"prospect_last_name": "<string>",
"prospect_phone": "<string>",
"recording_analysis": [
123
],
"recording_slug": "<string>",
"recording_url": "<string>",
"scheduled_at": "<string>",
"selected_outbound_number_id": "<string>",
"sip_trunk_id": "<string>",
"started_at": "<string>",
"status": "<string>",
"stt_duration_seconds": 123,
"summary": "<string>",
"telephony_code": 123,
"to_number": "<string>",
"tokens_input": 123,
"tokens_output": 123,
"tool_logs": [
{
"arguments": [
123
],
"created_at": "<string>",
"error_message": "<string>",
"id": "<string>",
"result": [
123
],
"status": "<string>",
"tool_name": "<string>"
}
],
"transcript_text": "<string>",
"tts_characters": 123,
"workflow_node_id": "<string>",
"workflow_run_id": "<string>",
"workflow_version_id": "<string>"
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}Calls
Get call details
Returns full details for a specific call including prospect and agent info
GET
/
org
/
{org_id}
/
calls
/
{call_id}
Get call details
curl --request GET \
--url https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}"
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}', 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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}",
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}"
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://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://v2-nova-api.prod.czmx.in/api/org/{org_id}/calls/{call_id}")
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{
"agent_name": "<string>",
"call_type": "<string>",
"callback_for": "<string>",
"cost_usd": "<string>",
"detected_intents": [
"<string>"
],
"direction": "<string>",
"duration_seconds": 123,
"ended_at": "<string>",
"evaluations": [
{
"created_at": "<string>",
"extracted_value": "<string>",
"id": "<string>",
"outcome_definition_id": "<string>",
"outcome_key": "<string>",
"reasoning": "<string>",
"result_boolean": true
}
],
"from_number": "<string>",
"id": "<string>",
"initial_agent_id": "<string>",
"is_trace_available": true,
"organization_id": "<string>",
"participating_agent_ids": [
"<string>"
],
"prospect_email": "<string>",
"prospect_external_id": "<string>",
"prospect_first_name": "<string>",
"prospect_id": "<string>",
"prospect_last_name": "<string>",
"prospect_phone": "<string>",
"recording_analysis": [
123
],
"recording_slug": "<string>",
"recording_url": "<string>",
"scheduled_at": "<string>",
"selected_outbound_number_id": "<string>",
"sip_trunk_id": "<string>",
"started_at": "<string>",
"status": "<string>",
"stt_duration_seconds": 123,
"summary": "<string>",
"telephony_code": 123,
"to_number": "<string>",
"tokens_input": 123,
"tokens_output": 123,
"tool_logs": [
{
"arguments": [
123
],
"created_at": "<string>",
"error_message": "<string>",
"id": "<string>",
"result": [
123
],
"status": "<string>",
"tool_name": "<string>"
}
],
"transcript_text": "<string>",
"tts_characters": 123,
"workflow_node_id": "<string>",
"workflow_run_id": "<string>",
"workflow_version_id": "<string>"
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}{
"data": "<unknown>",
"error": "<unknown>",
"message": "<string>",
"status": true
}Authorizations
Response
OK
Related data
Show child attributes
Show child attributes
Call summary (AI-generated summary of the call)
Show child attributes
Show child attributes
Transcript summary (null if call has no transcript yet)
⌘I

