Get Field Recording
curl --request GET \
--url https://data.craftflow.co/api/v1/recordings/{id}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://data.craftflow.co/api/v1/recordings/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://data.craftflow.co/api/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://data.craftflow.co/api/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",
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://data.craftflow.co/api/v1/recordings/{id}/"
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://data.craftflow.co/api/v1/recordings/{id}/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.craftflow.co/api/v1/recordings/{id}/")
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{
"data": {
"id": "e5f6a7b8-c9d0-1234-efab-567890123456",
"name": "HVAC Install - 123 Main St",
"start_time": "2025-07-01T09:00:00Z",
"end_time": "2025-07-01T09:45:00Z",
"audio_duration_seconds": 2700,
"score": 0.85,
"user": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"full_name": "John Doe"
},
"created_at": "2025-07-01T09:00:00Z",
"custom_fields": [
{
"name": "Customer Interest",
"slug": "customer-interest",
"value_type": "single_select",
"value": "High",
"source": "ai"
},
{
"name": "Quoted Price",
"slug": "quoted-price",
"value_type": "number",
"value": 12500,
"source": "manual"
}
]
}
}{
"error": {
"detail": "<string>"
}
}{
"error": {
"detail": "Not found."
}
}Field Recordings
Get Field Recording
Retrieve a single field recording by its ID.
GET
/
recordings
/
{id}
/
Get Field Recording
curl --request GET \
--url https://data.craftflow.co/api/v1/recordings/{id}/ \
--header 'Authorization: Bearer <token>'import requests
url = "https://data.craftflow.co/api/v1/recordings/{id}/"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://data.craftflow.co/api/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://data.craftflow.co/api/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",
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://data.craftflow.co/api/v1/recordings/{id}/"
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://data.craftflow.co/api/v1/recordings/{id}/")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://data.craftflow.co/api/v1/recordings/{id}/")
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{
"data": {
"id": "e5f6a7b8-c9d0-1234-efab-567890123456",
"name": "HVAC Install - 123 Main St",
"start_time": "2025-07-01T09:00:00Z",
"end_time": "2025-07-01T09:45:00Z",
"audio_duration_seconds": 2700,
"score": 0.85,
"user": {
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"full_name": "John Doe"
},
"created_at": "2025-07-01T09:00:00Z",
"custom_fields": [
{
"name": "Customer Interest",
"slug": "customer-interest",
"value_type": "single_select",
"value": "High",
"source": "ai"
},
{
"name": "Quoted Price",
"slug": "quoted-price",
"value_type": "number",
"value": 12500,
"source": "manual"
}
]
}
}{
"error": {
"detail": "<string>"
}
}{
"error": {
"detail": "Not found."
}
}⌘I