curl --request GET \
--url https://api.stardex.ai/v1/meeting-recordings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/meeting-recordings"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/meeting-recordings")
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",
"has_transcript": true,
"created_at": "2026-04-07T11:05:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
],
"meta": {
"total": 15,
"offset": 0,
"limit": 20
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}{
"success": false,
"error": {
"code": "<string>",
"message": "<string>"
}
}List meeting recordings
Retrieve a paginated list of meeting recordings with optional filters.
Filters: processing_status, calendar_meeting_id, meeting_started_after, meeting_started_before (ISO 8601 date range).
Sorting: sort_by (meeting_started_at, created_at, recording_duration_seconds) with sort_order (asc/desc, default desc).
Pagination: Use offset and limit query params (max 100 per page).
curl --request GET \
--url https://api.stardex.ai/v1/meeting-recordings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/meeting-recordings"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/meeting-recordings")
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",
"has_transcript": true,
"created_at": "2026-04-07T11:05:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
],
"meta": {
"total": 15,
"offset": 0,
"limit": 20
}
}{
"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.
Query Parameters
Records to skip for pagination. Defaults to 0.
x >= 0Max records per page (1–100). Defaults to 100.
1 <= x <= 100Filter by processing status. Use completed to find recordings with transcripts ready.
pending, processing, completed, failed Filter recordings belonging to a specific calendar meeting.
Return recordings where the meeting started at or after this timestamp (ISO 8601). Example: 2026-04-01T00:00:00Z.
Return recordings where the meeting started at or before this timestamp (ISO 8601). Example: 2026-04-30T23:59:59Z.
Column to sort results by. Defaults to created_at.
meeting_started_at— when the meeting occurredcreated_at— when the recording was created in the systemrecording_duration_seconds— recording length
meeting_started_at, created_at, recording_duration_seconds Sort direction. Defaults to desc (newest first).
asc, desc Was this page helpful?