Get meeting recording by ID
curl --request GET \
--url https://api.stardex.ai/v1/meeting-recordings/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-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.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-recordings/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/meeting-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{
"success": true,
"data": {
"id": "5c6d7e8f-9012-3456-7890-abcdef012345",
"calendar_meeting_id": "6d7e8f90-1234-5678-9012-abcdef012345",
"calendar_meeting": {
"id": "6d7e8f90-1234-5678-9012-abcdef012345",
"meeting_title": "Weekly Engineering Sync",
"meeting_url": "https://meet.google.com/abc-defg-hij",
"start_time": "2026-04-07T10:00:00.000Z"
},
"meeting_started_at": "2026-04-07T10:00:00.000Z",
"meeting_ended_at": "2026-04-07T11:00:00.000Z",
"recording_duration_seconds": 3600,
"processing_status": "completed",
"transcript_text": "Speaker 1: Good morning everyone...\nSpeaker 2: Hi, thanks for joining...",
"summary_text": "Summary\n- Discussed Q2 roadmap and deliverables.\n- Agreed on hiring 2 senior engineers by May.\nNext Steps\n- Pranav to draft the JD.",
"created_at": "2026-04-07T11:05:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Meeting Recordings
Get meeting recording by ID
Retrieve detailed information about a specific meeting recording including the associated calendar meeting details and full transcript text.
The transcript_text field is always included. It will be null if the recording has not finished processing or no transcript was generated.
GET
/
v1
/
meeting-recordings
/
{id}
Get meeting recording by ID
curl --request GET \
--url https://api.stardex.ai/v1/meeting-recordings/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-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.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-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://api.stardex.ai/v1/meeting-recordings/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/meeting-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{
"success": true,
"data": {
"id": "5c6d7e8f-9012-3456-7890-abcdef012345",
"calendar_meeting_id": "6d7e8f90-1234-5678-9012-abcdef012345",
"calendar_meeting": {
"id": "6d7e8f90-1234-5678-9012-abcdef012345",
"meeting_title": "Weekly Engineering Sync",
"meeting_url": "https://meet.google.com/abc-defg-hij",
"start_time": "2026-04-07T10:00:00.000Z"
},
"meeting_started_at": "2026-04-07T10:00:00.000Z",
"meeting_ended_at": "2026-04-07T11:00:00.000Z",
"recording_duration_seconds": 3600,
"processing_status": "completed",
"transcript_text": "Speaker 1: Good morning everyone...\nSpeaker 2: Hi, thanks for joining...",
"summary_text": "Summary\n- Discussed Q2 roadmap and deliverables.\n- Agreed on hiring 2 senior engineers by May.\nNext Steps\n- Pranav to draft the JD.",
"created_at": "2026-04-07T11:05:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}Authorizations
Authenticate with a Bearer token: API key, OAuth token, or session token.
Path Parameters
Meeting recording UUID
Was this page helpful?
⌘I