curl --request GET \
--url https://api.stardex.ai/v1/calendar-meetings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/calendar-meetings"
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/calendar-meetings', 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/calendar-meetings",
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/calendar-meetings"
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/calendar-meetings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/calendar-meetings")
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": "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",
"bot_status": "completed",
"bot_opt_out": false,
"has_recording": true,
"created_at": "2026-04-06T18:00:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
],
"meta": {
"total": 42,
"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 calendar meetings
Retrieve a paginated list of calendar meetings tracked by the notetaker.
Filters: start_time_after / start_time_before (ISO 8601 date range), bot_status (e.g. completed, failed, recording), meeting_title (case-insensitive text search).
Sorting: sort_by (start_time, created_at) 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/calendar-meetings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.stardex.ai/v1/calendar-meetings"
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/calendar-meetings', 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/calendar-meetings",
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/calendar-meetings"
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/calendar-meetings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stardex.ai/v1/calendar-meetings")
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": "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",
"bot_status": "completed",
"bot_opt_out": false,
"has_recording": true,
"created_at": "2026-04-06T18:00:00.000Z",
"updated_at": "2026-04-07T11:10:00.000Z"
}
],
"meta": {
"total": 42,
"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 <= 100Return meetings starting at or after this timestamp (ISO 8601). Example: 2026-04-01T00:00:00Z.
Return meetings starting at or before this timestamp (ISO 8601). Example: 2026-04-30T23:59:59Z.
Filter by notetaker bot status. Common values: completed (finished recording), failed (bot encountered an error), recording (currently in progress).
pending, scheduled, joining, waiting_room, in_call, recording, completed, failed, cancelled Case-insensitive text search on meeting title. Example: Weekly Sync matches "Weekly Engineering Sync".
Column to sort results by. Defaults to start_time.
start_time— when the meeting is scheduledcreated_at— when the meeting was created in the system
start_time, created_at Sort direction. Defaults to desc (newest first).
asc, desc Was this page helpful?