Get a Meeting
curl --request GET \
--url https://api.monaco.com/v1/meetings/{meeting_id}import requests
url = "https://api.monaco.com/v1/meetings/{meeting_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/meetings/{meeting_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.monaco.com/v1/meetings/{meeting_id}",
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://api.monaco.com/v1/meetings/{meeting_id}"
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://api.monaco.com/v1/meetings/{meeting_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/meetings/{meeting_id}")
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{
"data": {
"id": "mtg_abc123",
"account_id": "acc_abc123",
"opportunity_id": "opp_abc123",
"title": "Discovery Call",
"description": "Initial discovery call with Acme",
"start_time": "2026-03-01T10:00:00Z",
"end_time": "2026-03-01T10:30:00Z",
"meeting_platform": "Zoom",
"meeting_url": "https://zoom.us/j/123456789",
"organizer": {
"email": "jane@acme.com",
"display_name": "Jane Smith"
},
"attendees": [
{
"email": "john@acme.com",
"display_name": "John Doe",
"response_status": "accepted"
}
],
"next_actions": [
"Send pricing proposal by Friday",
"Schedule technical deep-dive"
],
"meeting_summary": "Discovery call with Acme. Strong interest in enterprise tier, budget confirmed for Q3.",
"video_url": "https://monaco-recordings.s3.amazonaws.com/...",
"transcript": [
{
"speaker": "Jane Smith",
"language": "en",
"words": [
{
"text": "Thanks",
"start_timestamp": 0.5,
"end_timestamp": 0.9
},
{
"text": "everyone",
"start_timestamp": 1,
"end_timestamp": 1.5
}
]
}
],
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-03-01T09:30:00Z"
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}Meetings
Get a Meeting
Gets a single meeting by its meeting_id. The detail response includes the AI-generated summary, a presigned video URL, and the full transcript with speaker attribution.
GET
/
v1
/
meetings
/
{meeting_id}
Get a Meeting
curl --request GET \
--url https://api.monaco.com/v1/meetings/{meeting_id}import requests
url = "https://api.monaco.com/v1/meetings/{meeting_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.monaco.com/v1/meetings/{meeting_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.monaco.com/v1/meetings/{meeting_id}",
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://api.monaco.com/v1/meetings/{meeting_id}"
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://api.monaco.com/v1/meetings/{meeting_id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.monaco.com/v1/meetings/{meeting_id}")
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{
"data": {
"id": "mtg_abc123",
"account_id": "acc_abc123",
"opportunity_id": "opp_abc123",
"title": "Discovery Call",
"description": "Initial discovery call with Acme",
"start_time": "2026-03-01T10:00:00Z",
"end_time": "2026-03-01T10:30:00Z",
"meeting_platform": "Zoom",
"meeting_url": "https://zoom.us/j/123456789",
"organizer": {
"email": "jane@acme.com",
"display_name": "Jane Smith"
},
"attendees": [
{
"email": "john@acme.com",
"display_name": "John Doe",
"response_status": "accepted"
}
],
"next_actions": [
"Send pricing proposal by Friday",
"Schedule technical deep-dive"
],
"meeting_summary": "Discovery call with Acme. Strong interest in enterprise tier, budget confirmed for Q3.",
"video_url": "https://monaco-recordings.s3.amazonaws.com/...",
"transcript": [
{
"speaker": "Jane Smith",
"language": "en",
"words": [
{
"text": "Thanks",
"start_timestamp": 0.5,
"end_timestamp": 0.9
},
{
"text": "everyone",
"start_timestamp": 1,
"end_timestamp": 1.5
}
]
}
],
"created_at": "2026-03-01T09:00:00Z",
"updated_at": "2026-03-01T09:30:00Z"
},
"meta": {
"timestamp": "2026-04-21T12:00:00Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>"
}
}⌘I