GET
/
v1
/
meetings
/
{id}
curl https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "mtg_8f3k2j1m4n5p",
  "title": "Weekly Product Sync",
  "status": "completed",
  "platform": "zoom",
  "started_at": "2026-04-10T14:00:00Z",
  "ended_at": "2026-04-10T14:47:32Z",
  "duration_seconds": 2852,
  "language": "en",
  "participants": [
    {
      "id": "prt_a1b2c3",
      "name": "Sarah Chen",
      "email": "sarah@example.com",
      "role": "host",
      "speaking_duration_seconds": 842,
      "joined_at": "2026-04-10T13:59:12Z",
      "left_at": null
    },
    {
      "id": "prt_d4e5f6",
      "name": "James Rodriguez",
      "email": "james@example.com",
      "role": "attendee",
      "speaking_duration_seconds": 623,
      "joined_at": "2026-04-10T14:00:31Z",
      "left_at": null
    },
    {
      "id": "prt_g7h8i9",
      "name": "Priya Patel",
      "email": "priya@example.com",
      "role": "attendee",
      "speaking_duration_seconds": 534,
      "joined_at": "2026-04-10T14:01:05Z",
      "left_at": "2026-04-10T14:42:18Z"
    }
  ],
  "recording": {
    "file_size_bytes": 34521088,
    "format": "webm",
    "sample_rate": 16000,
    "channels": 1
  },
  "transcript_id": "trs_9a2b3c4d5e6f",
  "summary_id": "sum_1g2h3i4j5k6l",
  "calendar_event_id": "cal_evt_x7y8z9",
  "tags": ["product", "weekly"],
  "created_at": "2026-04-10T13:58:12Z",
  "updated_at": "2026-04-10T14:52:08Z"
}
Returns the full meeting object including the list of participants, recording metadata, and links to the associated transcript and summary.
id
string
required
The unique meeting identifier (e.g., mtg_8f3k2j1m4n5p).

Response

id
string
Unique meeting identifier.
title
string
The meeting title.
status
string
Current status: scheduled, in_progress, processing, completed, or failed.
platform
string
The platform where the meeting was recorded.
started_at
string
ISO 8601 timestamp when the meeting recording started.
ended_at
string | null
ISO 8601 timestamp when the meeting recording ended.
duration_seconds
integer | null
Duration of the meeting in seconds.
language
string
Primary language detected (ISO 639-1 code).
participants
array
List of identified participants.
recording
object
Recording metadata.
transcript_id
string | null
The ID of the associated transcript, or null if not yet available.
summary_id
string | null
The ID of the associated summary, or null if not yet generated.
calendar_event_id
string | null
The linked calendar event ID, if the meeting was auto-recorded from a calendar.
tags
array
User-defined tags attached to this meeting (array of strings).
created_at
string
ISO 8601 timestamp when the meeting record was created.
updated_at
string
ISO 8601 timestamp when the meeting was last updated.
curl https://api.mavioapp.com/v1/meetings/mtg_8f3k2j1m4n5p \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "mtg_8f3k2j1m4n5p",
  "title": "Weekly Product Sync",
  "status": "completed",
  "platform": "zoom",
  "started_at": "2026-04-10T14:00:00Z",
  "ended_at": "2026-04-10T14:47:32Z",
  "duration_seconds": 2852,
  "language": "en",
  "participants": [
    {
      "id": "prt_a1b2c3",
      "name": "Sarah Chen",
      "email": "sarah@example.com",
      "role": "host",
      "speaking_duration_seconds": 842,
      "joined_at": "2026-04-10T13:59:12Z",
      "left_at": null
    },
    {
      "id": "prt_d4e5f6",
      "name": "James Rodriguez",
      "email": "james@example.com",
      "role": "attendee",
      "speaking_duration_seconds": 623,
      "joined_at": "2026-04-10T14:00:31Z",
      "left_at": null
    },
    {
      "id": "prt_g7h8i9",
      "name": "Priya Patel",
      "email": "priya@example.com",
      "role": "attendee",
      "speaking_duration_seconds": 534,
      "joined_at": "2026-04-10T14:01:05Z",
      "left_at": "2026-04-10T14:42:18Z"
    }
  ],
  "recording": {
    "file_size_bytes": 34521088,
    "format": "webm",
    "sample_rate": 16000,
    "channels": 1
  },
  "transcript_id": "trs_9a2b3c4d5e6f",
  "summary_id": "sum_1g2h3i4j5k6l",
  "calendar_event_id": "cal_evt_x7y8z9",
  "tags": ["product", "weekly"],
  "created_at": "2026-04-10T13:58:12Z",
  "updated_at": "2026-04-10T14:52:08Z"
}