curl --request GET \
--url https://voice.growdental.ai/api/partner/v1/recordings/streamimport requests
url = "https://voice.growdental.ai/api/partner/v1/recordings/stream"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://voice.growdental.ai/api/partner/v1/recordings/stream', 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://voice.growdental.ai/api/partner/v1/recordings/stream",
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://voice.growdental.ai/api/partner/v1/recordings/stream"
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://voice.growdental.ai/api/partner/v1/recordings/stream")
.asString();require 'uri'
require 'net/http'
url = URI("https://voice.growdental.ai/api/partner/v1/recordings/stream")
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"<string>"{
"error": "token_expired",
"message": "This recording link has expired. Request a new one via GET /api/partner/v1/calls/{callId}/recording."
}{
"error": "app_suspended",
"message": "This partner app is suspended."
}{
"error": "not_found",
"message": "No recording is available for this call."
}{
"error": "rate_limited",
"message": "Rate limit exceeded. Retry after 12 seconds."
}{
"error": "recording_unavailable",
"message": "The recording could not be retrieved from storage. Please try again."
}Stream a recording (signed-URL target)
The target of the 302 redirect from GET /calls/{callId}/recording.
You normally never construct this URL yourself — follow the redirect.
Auth is the signed token in the query string (HMAC-signed,
~15-minute expiry), not the Authorization header. Because a signed
link can outlive a kill switch, the issuing key and app are
re-validated on every request: key not revoked, app active, BAA still
signed, and the practice grant (with recordings:read) still present.
Revoked or ungranted access returns 401/403/404 even for an
unexpired token.
On success the audio bytes are streamed through server-side
(Content-Type: audio/mpeg, Cache-Control: private, no-store) —
the raw storage URL is never exposed. Expired tokens return
401 token_expired: request a fresh link via
GET /calls/{callId}/recording.
curl --request GET \
--url https://voice.growdental.ai/api/partner/v1/recordings/streamimport requests
url = "https://voice.growdental.ai/api/partner/v1/recordings/stream"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://voice.growdental.ai/api/partner/v1/recordings/stream', 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://voice.growdental.ai/api/partner/v1/recordings/stream",
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://voice.growdental.ai/api/partner/v1/recordings/stream"
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://voice.growdental.ai/api/partner/v1/recordings/stream")
.asString();require 'uri'
require 'net/http'
url = URI("https://voice.growdental.ai/api/partner/v1/recordings/stream")
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"<string>"{
"error": "token_expired",
"message": "This recording link has expired. Request a new one via GET /api/partner/v1/calls/{callId}/recording."
}{
"error": "app_suspended",
"message": "This partner app is suspended."
}{
"error": "not_found",
"message": "No recording is available for this call."
}{
"error": "rate_limited",
"message": "Rate limit exceeded. Retry after 12 seconds."
}{
"error": "recording_unavailable",
"message": "The recording could not be retrieved from storage. Please try again."
}Query Parameters
Signed recording token issued by GET /calls/{callId}/recording.
Response
The recording audio.
The response is of type file.