GET
/
v1
/
templates
curl -G https://api.mavioapp.com/v1/templates \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d type=built_in
{
  "data": [
    {
      "id": "tpl_default_exec",
      "name": "Executive Summary",
      "description": "High-level overview with key decisions, action items, and next steps. Ideal for leadership updates.",
      "type": "built_in",
      "section_count": 4,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    },
    {
      "id": "tpl_default_detailed",
      "name": "Detailed Notes",
      "description": "Comprehensive meeting notes organized by topic, with speaker attributions and timestamps.",
      "type": "built_in",
      "section_count": 6,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    },
    {
      "id": "tpl_default_standup",
      "name": "Standup Recap",
      "description": "Organized by participant with yesterday, today, and blockers sections.",
      "type": "built_in",
      "section_count": 3,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "total": 3,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}
Returns all available summary templates. Templates define how meeting summaries are structured, including the sections to generate and the AI prompts used for each section. The list includes built-in templates provided by Mavio and any custom templates you have created.
limit
integer
default:"20"
Number of templates to return per page. Must be between 1 and 100.
offset
integer
default:"0"
Number of templates to skip for pagination.
type
string
Filter by template type. One of built_in (Mavio default templates) or custom (user-created templates).

Response

data
array
An array of template objects.
pagination
object
Pagination metadata.
curl -G https://api.mavioapp.com/v1/templates \
  -H "Authorization: Bearer mvo_live_abc123" \
  -d type=built_in
{
  "data": [
    {
      "id": "tpl_default_exec",
      "name": "Executive Summary",
      "description": "High-level overview with key decisions, action items, and next steps. Ideal for leadership updates.",
      "type": "built_in",
      "section_count": 4,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    },
    {
      "id": "tpl_default_detailed",
      "name": "Detailed Notes",
      "description": "Comprehensive meeting notes organized by topic, with speaker attributions and timestamps.",
      "type": "built_in",
      "section_count": 6,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    },
    {
      "id": "tpl_default_standup",
      "name": "Standup Recap",
      "description": "Organized by participant with yesterday, today, and blockers sections.",
      "type": "built_in",
      "section_count": 3,
      "created_at": "2026-01-01T00:00:00Z",
      "updated_at": "2026-01-01T00:00:00Z"
    }
  ],
  "pagination": {
    "total": 3,
    "limit": 20,
    "offset": 0,
    "has_more": false
  }
}