GET
/
v1
/
summaries
/
{id}
curl https://api.mavioapp.com/v1/summaries/sum_1g2h3i4j5k6l \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "sum_1g2h3i4j5k6l",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "transcript_id": "trs_9a2b3c4d5e6f",
  "format": "structured",
  "language": "en",
  "overview": "The product team reviewed the April 20th launch timeline, confirmed Stripe integration is unblocked, and triaged 3 remaining QA bugs. Sprint 14 planning was deferred to a follow-up session.",
  "attendees": [
    { "name": "Sarah Chen", "email": "sarah@example.com", "role": "host" },
    { "name": "James Rodriguez", "email": "james@example.com", "role": "attendee" },
    { "name": "Priya Patel", "email": "priya@example.com", "role": "attendee" },
    { "name": "Marcus Kim", "email": "marcus@example.com", "role": "attendee" },
    { "name": "Aisha Johnson", "email": "aisha@example.com", "role": "attendee" },
    { "name": "Tom Baker", "email": "tom@example.com", "role": "attendee" }
  ],
  "agenda": [
    {
      "title": "Launch timeline update",
      "summary": "Team confirmed April 20th launch date. Stripe sandbox credentials received, integration testing expected complete by April 11th.",
      "duration_seconds": 720
    },
    {
      "title": "QA bug triage",
      "summary": "Reviewed 3 open P1 bugs. Two assigned to James, one to Priya. All must be resolved before launch.",
      "duration_seconds": 1080
    },
    {
      "title": "Sprint 14 planning",
      "summary": "Deferred to a dedicated session on Friday due to time constraints.",
      "duration_seconds": 480
    }
  ],
  "decisions": [
    {
      "description": "Launch date remains April 20th with no delay.",
      "decided_by": "Sarah Chen",
      "context": "Stripe credentials received, removing the last blocker. All P1 bugs are fixable within the timeline."
    },
    {
      "description": "Sprint 14 planning moved to Friday standup.",
      "decided_by": "Sarah Chen",
      "context": "Not enough time remaining in this meeting to cover sprint planning properly."
    }
  ],
  "action_items": [
    {
      "id": "act_p6q7r8",
      "title": "Complete Stripe payment integration testing",
      "assignee": "Priya Patel",
      "due_date": "2026-04-11",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_s9t0u1",
      "title": "Fix checkout page crash on Safari (BUG-442)",
      "assignee": "James Rodriguez",
      "due_date": "2026-04-14",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_v2w3x4",
      "title": "Fix email notification delay (BUG-445)",
      "assignee": "James Rodriguez",
      "due_date": "2026-04-14",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_y5z6a7",
      "title": "Prepare sprint 14 backlog for Friday planning",
      "assignee": "Sarah Chen",
      "due_date": "2026-04-12",
      "priority": "medium",
      "status": "pending"
    }
  ],
  "key_points": [
    "April 20th launch date is confirmed with no blockers remaining.",
    "Stripe sandbox credentials were received on the morning of April 10th.",
    "Three P1 bugs must be resolved before launch: BUG-442, BUG-443, BUG-445.",
    "Sprint 14 planning will happen Friday to allow full focus on launch prep this week."
  ],
  "sentiment": "positive",
  "created_at": "2026-04-10T14:51:44Z",
  "updated_at": "2026-04-10T14:51:44Z"
}
Returns a structured summary for a given summary ID. Summaries are automatically generated once a meeting’s transcript is ready and include an overview, attendees, agenda items, key decisions, action items, and key discussion points.
id
string
required
The unique summary identifier (e.g., sum_1g2h3i4j5k6l).

Response

id
string
Unique summary identifier.
meeting_id
string
The ID of the meeting this summary belongs to.
transcript_id
string
The ID of the transcript used to generate this summary.
format
string
The summary format: structured (default), narrative, or bullet_points.
language
string
Language of the summary (ISO 639-1 code).
overview
string
A 2-3 sentence high-level overview of the meeting.
attendees
array
List of meeting attendees.
agenda
array
Topics discussed during the meeting.
decisions
array
Key decisions made during the meeting.
action_items
array
Action items extracted from the meeting.
key_points
array
Important discussion points and takeaways (array of strings).
sentiment
string
Overall meeting sentiment: positive, neutral, or negative.
created_at
string
ISO 8601 timestamp when the summary was generated.
updated_at
string
ISO 8601 timestamp when the summary was last updated (e.g., after regeneration).
curl https://api.mavioapp.com/v1/summaries/sum_1g2h3i4j5k6l \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "sum_1g2h3i4j5k6l",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "transcript_id": "trs_9a2b3c4d5e6f",
  "format": "structured",
  "language": "en",
  "overview": "The product team reviewed the April 20th launch timeline, confirmed Stripe integration is unblocked, and triaged 3 remaining QA bugs. Sprint 14 planning was deferred to a follow-up session.",
  "attendees": [
    { "name": "Sarah Chen", "email": "sarah@example.com", "role": "host" },
    { "name": "James Rodriguez", "email": "james@example.com", "role": "attendee" },
    { "name": "Priya Patel", "email": "priya@example.com", "role": "attendee" },
    { "name": "Marcus Kim", "email": "marcus@example.com", "role": "attendee" },
    { "name": "Aisha Johnson", "email": "aisha@example.com", "role": "attendee" },
    { "name": "Tom Baker", "email": "tom@example.com", "role": "attendee" }
  ],
  "agenda": [
    {
      "title": "Launch timeline update",
      "summary": "Team confirmed April 20th launch date. Stripe sandbox credentials received, integration testing expected complete by April 11th.",
      "duration_seconds": 720
    },
    {
      "title": "QA bug triage",
      "summary": "Reviewed 3 open P1 bugs. Two assigned to James, one to Priya. All must be resolved before launch.",
      "duration_seconds": 1080
    },
    {
      "title": "Sprint 14 planning",
      "summary": "Deferred to a dedicated session on Friday due to time constraints.",
      "duration_seconds": 480
    }
  ],
  "decisions": [
    {
      "description": "Launch date remains April 20th with no delay.",
      "decided_by": "Sarah Chen",
      "context": "Stripe credentials received, removing the last blocker. All P1 bugs are fixable within the timeline."
    },
    {
      "description": "Sprint 14 planning moved to Friday standup.",
      "decided_by": "Sarah Chen",
      "context": "Not enough time remaining in this meeting to cover sprint planning properly."
    }
  ],
  "action_items": [
    {
      "id": "act_p6q7r8",
      "title": "Complete Stripe payment integration testing",
      "assignee": "Priya Patel",
      "due_date": "2026-04-11",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_s9t0u1",
      "title": "Fix checkout page crash on Safari (BUG-442)",
      "assignee": "James Rodriguez",
      "due_date": "2026-04-14",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_v2w3x4",
      "title": "Fix email notification delay (BUG-445)",
      "assignee": "James Rodriguez",
      "due_date": "2026-04-14",
      "priority": "high",
      "status": "pending"
    },
    {
      "id": "act_y5z6a7",
      "title": "Prepare sprint 14 backlog for Friday planning",
      "assignee": "Sarah Chen",
      "due_date": "2026-04-12",
      "priority": "medium",
      "status": "pending"
    }
  ],
  "key_points": [
    "April 20th launch date is confirmed with no blockers remaining.",
    "Stripe sandbox credentials were received on the morning of April 10th.",
    "Three P1 bugs must be resolved before launch: BUG-442, BUG-443, BUG-445.",
    "Sprint 14 planning will happen Friday to allow full focus on launch prep this week."
  ],
  "sentiment": "positive",
  "created_at": "2026-04-10T14:51:44Z",
  "updated_at": "2026-04-10T14:51:44Z"
}