Get Recording
curl --request GET \
--url https://api.example.com/v1/recordings/{id}import requests
url = "https://api.example.com/v1/recordings/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/recordings/{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://api.example.com/v1/recordings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/v1/recordings/{id}"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/recordings/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/recordings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"toNumber": "<string>",
"fromNumber": "<string>",
"duration": 123,
"status": "<string>",
"direction": "<string>",
"createdAt": "<string>",
"transcript": {
"text": "<string>",
"wordCount": 123,
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"speaker": "<string>"
}
]
}
}Recordings
Get Recording
Get a single recording with its full transcript
GET
/
v1
/
recordings
/
{id}
Get Recording
curl --request GET \
--url https://api.example.com/v1/recordings/{id}import requests
url = "https://api.example.com/v1/recordings/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/v1/recordings/{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://api.example.com/v1/recordings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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.example.com/v1/recordings/{id}"
req, _ := http.NewRequest("GET", url, nil)
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.example.com/v1/recordings/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/recordings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"toNumber": "<string>",
"fromNumber": "<string>",
"duration": 123,
"status": "<string>",
"direction": "<string>",
"createdAt": "<string>",
"transcript": {
"text": "<string>",
"wordCount": 123,
"words": [
{
"word": "<string>",
"start": 123,
"end": 123,
"speaker": "<string>"
}
]
}
}Returns detailed information about a specific recording, including the full transcript with word-level timestamps.
Poll the endpoint until
Path Parameters
string
required
The recording ID
Request
curl -X GET "https://app.transcord.app/api/v1/recordings/clx1234567890" \
-H "Authorization: Bearer tr_live_your_api_key"
const recordingId = 'clx1234567890';
const response = await fetch(`https://app.transcord.app/api/v1/recordings/${recordingId}`, {
headers: {
'Authorization': 'Bearer tr_live_your_api_key'
}
});
const recording = await response.json();
import requests
recording_id = 'clx1234567890'
response = requests.get(
f'https://app.transcord.app/api/v1/recordings/{recording_id}',
headers={'Authorization': 'Bearer tr_live_your_api_key'}
)
recording = response.json()
Response
string
Unique recording identifier
string
Destination phone number
string
Caller phone number
number
Call duration in seconds
string
Recording status:
completed, transcribing, processing, failedstring
Call direction:
outbound or inboundstring
ISO 8601 timestamp
object
Full transcript data (only present when status is
completed)Response
{
"id": "clx1234567890",
"toNumber": "+14155551234",
"fromNumber": "+14155555678",
"duration": 342,
"status": "completed",
"direction": "outbound",
"createdAt": "2026-01-15T10:30:00.000Z",
"transcript": {
"text": "Hello, this is John calling about the interview...",
"wordCount": 847,
"words": [
{
"word": "Hello,",
"start": 0.5,
"end": 0.9,
"speaker": "you"
},
{
"word": "this",
"start": 1.0,
"end": 1.2,
"speaker": "you"
}
]
}
}
Processing Status
If the recording is still being processed, thetranscript field will be absent and the status will indicate the current state:
{
"id": "clx1234567890",
"status": "transcribing",
...
}
status becomes completed.
Errors
| Status | Description |
|---|---|
401 | Invalid or missing API key |
404 | Recording not found |
⌘I