v1

latestOpenAPI 3.1.02026-07-26102934.7 KB
documents

Get document

Returns a document by ID. Documents are AI-generated artifacts from meetings, such as summaries, action items, or notes. You can request the content in multiple formats.

get/documents/{document_id}

Path parameters

document_idstring required

The document ID (e.g., doc_abc123).

Query parameters

format'html' | 'markdown' | 'raw' | 'docx' | 'json'

Output format for the document content.

  • html — HTML markup
  • markdown — Markdown text
  • raw — raw/plain text
  • docx — base64-encoded Word document
  • json — JSON array of content blocks

Response

The document.

idstring required
titlestring required
format'html' | 'markdown' | 'raw' | 'docx' | 'json' required
contentstring required

Document content in the requested format. For docx, this is base64-encoded. For json, this is a JSON-serialized array of content blocks.

created_atstring date-time required

Example response

{
  "id": "doc_abc123",
  "title": "Meeting summary"
}
All 10 operations