Recording
Get recording details
Retrieve a recording.
GET
/
v1
/
recordings
/
{recordingId}
cURL
curl --request GET \
--url https://api.claap.io/v1/recordings/{recordingId} \
--header 'X-Claap-Key: <api-key>'import requests
url = "https://api.claap.io/v1/recordings/{recordingId}"
headers = {"X-Claap-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Claap-Key': '<api-key>'}};
fetch('https://api.claap.io/v1/recordings/{recordingId}', 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.claap.io/v1/recordings/{recordingId}",
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-Claap-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.claap.io/v1/recordings/{recordingId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Claap-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.claap.io/v1/recordings/{recordingId}")
.header("X-Claap-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.claap.io/v1/recordings/{recordingId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Claap-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"result": {
"recording": {
"createdAt": "<string>",
"durationSeconds": 123,
"id": "<string>",
"labels": [
"<string>"
],
"recorder": {
"attended": true,
"email": "<string>",
"id": "<string>",
"name": "<string>"
},
"state": "Ready",
"thumbnailUrl": "<string>",
"transcriptOnly": true,
"transcripts": [
{
"textUrl": "<string>",
"url": "<string>",
"isActive": true,
"isTranscript": true,
"langIso2": "<string>"
}
],
"url": "<string>",
"video": {
"url": "<string>"
},
"workspace": {
"id": "<string>",
"name": "<string>"
},
"actionItems": [
{
"items": [
{
"isChecked": true,
"description": "<string>"
}
],
"langIso2": "<string>"
}
],
"companies": [
{
"id": "<string>",
"name": "<string>"
}
],
"insightTemplates": [
"<string>"
],
"keyTakeaways": [
{
"langIso2": "<string>",
"text": "<string>"
}
],
"outlines": [
{
"langIso2": "<string>",
"text": "<string>"
}
],
"channel": {
"id": "<string>",
"name": "<string>"
},
"meeting": {
"endingAt": "<string>",
"participants": [
{
"attended": true,
"email": "<string>",
"id": "<string>",
"name": "<string>"
}
],
"startingAt": "<string>",
"type": "internal",
"conferenceUrl": "https://meet.google.com/aaa-bbbb-cccc"
},
"source": "Aircall",
"title": "<string>",
"aiFields": [
{
"description": "<string>",
"title": "<string>"
}
],
"analytics": {
"interactivityScore": 123,
"longestCustomerStorySeconds": 123,
"longestMonologueSeconds": 123,
"patienceSeconds": 123,
"questionsPerHour": 123,
"talkingRatio": 123
},
"crmInfo": {
"crm": "attio",
"deal": {
"id": "<string>"
}
},
"deal": {
"id": "<string>",
"name": "<string>"
}
}
}
}The shape of the response depends of the state of the recording:
Empty, Uploaded, Ready or Failed.
The aiFields attribute contains the recording AI insights in a flat collection. The insightTemplates attribute is deprecated and always empty since the 15th of June 2026.⌘I
cURL
curl --request GET \
--url https://api.claap.io/v1/recordings/{recordingId} \
--header 'X-Claap-Key: <api-key>'import requests
url = "https://api.claap.io/v1/recordings/{recordingId}"
headers = {"X-Claap-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Claap-Key': '<api-key>'}};
fetch('https://api.claap.io/v1/recordings/{recordingId}', 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.claap.io/v1/recordings/{recordingId}",
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-Claap-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.claap.io/v1/recordings/{recordingId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Claap-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.claap.io/v1/recordings/{recordingId}")
.header("X-Claap-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.claap.io/v1/recordings/{recordingId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Claap-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"result": {
"recording": {
"createdAt": "<string>",
"durationSeconds": 123,
"id": "<string>",
"labels": [
"<string>"
],
"recorder": {
"attended": true,
"email": "<string>",
"id": "<string>",
"name": "<string>"
},
"state": "Ready",
"thumbnailUrl": "<string>",
"transcriptOnly": true,
"transcripts": [
{
"textUrl": "<string>",
"url": "<string>",
"isActive": true,
"isTranscript": true,
"langIso2": "<string>"
}
],
"url": "<string>",
"video": {
"url": "<string>"
},
"workspace": {
"id": "<string>",
"name": "<string>"
},
"actionItems": [
{
"items": [
{
"isChecked": true,
"description": "<string>"
}
],
"langIso2": "<string>"
}
],
"companies": [
{
"id": "<string>",
"name": "<string>"
}
],
"insightTemplates": [
"<string>"
],
"keyTakeaways": [
{
"langIso2": "<string>",
"text": "<string>"
}
],
"outlines": [
{
"langIso2": "<string>",
"text": "<string>"
}
],
"channel": {
"id": "<string>",
"name": "<string>"
},
"meeting": {
"endingAt": "<string>",
"participants": [
{
"attended": true,
"email": "<string>",
"id": "<string>",
"name": "<string>"
}
],
"startingAt": "<string>",
"type": "internal",
"conferenceUrl": "https://meet.google.com/aaa-bbbb-cccc"
},
"source": "Aircall",
"title": "<string>",
"aiFields": [
{
"description": "<string>",
"title": "<string>"
}
],
"analytics": {
"interactivityScore": 123,
"longestCustomerStorySeconds": 123,
"longestMonologueSeconds": 123,
"patienceSeconds": 123,
"questionsPerHour": 123,
"talkingRatio": 123
},
"crmInfo": {
"crm": "attio",
"deal": {
"id": "<string>"
}
},
"deal": {
"id": "<string>",
"name": "<string>"
}
}
}
}