Skip to main content
GET
/
v1
/
notes
/
{id}
curl https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "nte_a1b2c3d4e5",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Key Decisions",
  "content": "## Decisions Made\n\n- Launch date confirmed for April 20th\n- Stripe integration will be prioritized over PayPal\n- QA sprint starts Monday\n\n## Open Questions\n\n- Who will handle the marketing launch blog post?\n- Do we need a staging deployment before the 20th?",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen",
    "email": "sarah@example.com"
  },
  "created_at": "2026-04-10T15:02:00Z",
  "updated_at": "2026-04-10T15:15:44Z"
}

Documentation Index

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

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

Returns the full note object including its content, author, and associated meeting information.
id
string
required
The unique note identifier (e.g., nte_a1b2c3d4e5).

Response

id
string
Unique note identifier.
meeting_id
string
The meeting this note is attached to.
title
string | null
Optional title for the note.
content
string
The note content in Markdown format.
author
object
The user who created the note.
created_at
string
ISO 8601 timestamp when the note was created.
updated_at
string
ISO 8601 timestamp when the note was last modified.
curl https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
  -H "Authorization: Bearer mvo_live_abc123"
{
  "id": "nte_a1b2c3d4e5",
  "meeting_id": "mtg_8f3k2j1m4n5p",
  "title": "Key Decisions",
  "content": "## Decisions Made\n\n- Launch date confirmed for April 20th\n- Stripe integration will be prioritized over PayPal\n- QA sprint starts Monday\n\n## Open Questions\n\n- Who will handle the marketing launch blog post?\n- Do we need a staging deployment before the 20th?",
  "author": {
    "id": "usr_f6g7h8",
    "name": "Sarah Chen",
    "email": "sarah@example.com"
  },
  "created_at": "2026-04-10T15:02:00Z",
  "updated_at": "2026-04-10T15:15:44Z"
}