Skip to main content
GET
/
v1
/
meetings
/
{meeting_id}
Get a Meeting
curl --request GET \
  --url https://api.example.com/v1/meetings/{meeting_id}
{
  "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"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.monaco.com/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

meeting_id
string<uuid>
required

Response

Successful Response

data
MeetingDetailResponse · object
required
meta
ResponseMeta · object