Admin Get Call By ID
curl --request GET \
--url https://api.voxo.co/v2/admin/reporting/calls/{callId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.voxo.co/v2/admin/reporting/calls/{callId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.voxo.co/v2/admin/reporting/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.voxo.co/v2/admin/reporting/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 => [
"Authorization: Bearer <token>"
],
]);
$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.voxo.co/v2/admin/reporting/calls/{callId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.voxo.co/v2/admin/reporting/calls/{callId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.voxo.co/v2/admin/reporting/calls/{callId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"callId": "<string>",
"tenantId": 123,
"start": "<string>",
"end": "<string>",
"direction": "<string>",
"callerIdNum": "<string>",
"callerIdName": "<string>",
"dialedNum": "<string>",
"dialedName": "<string>",
"disposition": "<string>",
"conversations": [
{
"summary": {
"text": "<string>"
},
"average_sentiment": "<string>",
"average_sentiment_score": 123,
"topics": [
{
"text": "<string>",
"topic": "<string>",
"confidence_score": 123
}
],
"sentiments": [
{
"text": "<string>",
"sentiment": "<string>",
"sentiment_score": 123
}
],
"intents": [
{
"text": "<string>",
"intent": "<string>",
"confidence_score": 123
}
],
"transcripts": [
{
"text": "<string>",
"start": 123,
"cidNum": "<string>",
"channel": "<string>"
}
]
}
],
"answeredAt": "<string>",
"transferred": 123,
"voicemail": 123,
"queueCall": 123,
"uniqueId": "<string>",
"recorded": 123
}Reporting - Calls
Admin Get Call By ID
Get a single call record by call ID, including transcript and AI insights. Authorized against the record’s tenant via account permit.
GET
/
v2
/
admin
/
reporting
/
calls
/
{callId}
Admin Get Call By ID
curl --request GET \
--url https://api.voxo.co/v2/admin/reporting/calls/{callId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.voxo.co/v2/admin/reporting/calls/{callId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.voxo.co/v2/admin/reporting/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.voxo.co/v2/admin/reporting/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 => [
"Authorization: Bearer <token>"
],
]);
$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.voxo.co/v2/admin/reporting/calls/{callId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.voxo.co/v2/admin/reporting/calls/{callId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.voxo.co/v2/admin/reporting/calls/{callId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"callId": "<string>",
"tenantId": 123,
"start": "<string>",
"end": "<string>",
"direction": "<string>",
"callerIdNum": "<string>",
"callerIdName": "<string>",
"dialedNum": "<string>",
"dialedName": "<string>",
"disposition": "<string>",
"conversations": [
{
"summary": {
"text": "<string>"
},
"average_sentiment": "<string>",
"average_sentiment_score": 123,
"topics": [
{
"text": "<string>",
"topic": "<string>",
"confidence_score": 123
}
],
"sentiments": [
{
"text": "<string>",
"sentiment": "<string>",
"sentiment_score": 123
}
],
"intents": [
{
"text": "<string>",
"intent": "<string>",
"confidence_score": 123
}
],
"transcripts": [
{
"text": "<string>",
"start": 123,
"cidNum": "<string>",
"channel": "<string>"
}
]
}
],
"answeredAt": "<string>",
"transferred": 123,
"voicemail": 123,
"queueCall": 123,
"uniqueId": "<string>",
"recorded": 123
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Call ID to retrieve
Minimum string length:
1Response
200 - application/json
Full call record with transcript and insights
Unique call identifier
Tenant ID
Call start time (ISO 8601)
Call end time (ISO 8601)
Call direction (IN/OUT)
Caller ID number
Caller ID name
Dialed number
Dialed name
Call disposition
Formatted transcript and AI insights per user-session leg, ordered by answeredAt (empty when none available)
Show child attributes
Show child attributes
Answered-at time (ISO 8601)
Transferred flag
Voicemail flag
Queue call flag
Unique call session ID
Recorded flag
Was this page helpful?