Overview

All public endpoints are served from https://api.altar.inc and use versioned paths. Requests must include a user-generated personal API key.

GET /public/v1/notes

Returns recent meeting note summaries tied to the user who owns the API key.

Field Type Description
id string Note record identifier.
title string | null Generated note title.
summary string | null Summary text for the meeting note.
content string Readable note content returned to the agent.
meeting_session_id string | null Meeting session identifier, when present.
curl https://api.altar.inc/public/v1/notes \
  -H "Authorization: Bearer altar_api_your_personal_key"

Versioning

Public endpoints should be versioned in the URL. Breaking changes belong in a new version path rather than behind hidden response switches.

Recommended pattern: /public/v1/...