> ## 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.

# Get note

> Retrieve a specific note by its unique identifier.

Returns the full note object including its content, author, and associated meeting information.

<ParamField path="id" type="string" required>
  The unique note identifier (e.g., `nte_a1b2c3d4e5`).
</ParamField>

### Response

<ResponseField name="id" type="string">
  Unique note identifier.
</ResponseField>

<ResponseField name="meeting_id" type="string">
  The meeting this note is attached to.
</ResponseField>

<ResponseField name="title" type="string | null">
  Optional title for the note.
</ResponseField>

<ResponseField name="content" type="string">
  The note content in Markdown format.
</ResponseField>

<ResponseField name="author" type="object">
  The user who created the note.

  <Expandable title="Author object">
    <ResponseField name="id" type="string">
      User identifier.
    </ResponseField>

    <ResponseField name="name" type="string">
      Display name of the author.
    </ResponseField>

    <ResponseField name="email" type="string">
      Email address of the author.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp when the note was created.
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp when the note was last modified.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.mavioapp.com/v1/notes/nte_a1b2c3d4e5 \
    -H "Authorization: Bearer mvo_live_abc123"
  ```

  ```python Python theme={null}
  note = client.notes.get("nte_a1b2c3d4e5")
  print(f"{note.title}: {note.content}")
  ```

  ```javascript Node.js theme={null}
  const note = await client.notes.get('nte_a1b2c3d4e5');
  console.log(`${note.title}: ${note.content}`);
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "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"
  }
  ```
</ResponseExample>
