---
title: "Get Document"
method: GET
path: "/voice/api/v1/documents/{document_id}"
tags: ["documents"]
---

# Get Document

`GET /voice/api/v1/documents/{document_id}`

Fetch a document's metadata and a presigned **GET** URL to download its content (markdown). Use this to retrieve generated notes by `document_id` — e.g. the `document_id` returned by Get Session or Process Template.

## Path parameters

- `document_id` string, required

## Response `200`

Document metadata with download URL

- DocumentEnvelopeResponse
  - `status` string
  - `data` Document
    - `document_id` string
    - `session_id` string
    - `template_id` string
    - `document_name` string
    - `type` string — Content format of the document.
    - `document_type` string — Document category (`template`, `custom`, `transcript`, ...).
    - `status` string
    - `errors` unknown[]
      - unknown
    - `warnings` unknown[]
      - unknown
    - `usage_information` object
    - `presigned_url` string — Presigned S3 URL. On Create/Update it is a **PUT** URL to upload content; on Get it is a **GET** URL to download content.
    - `created_at` string
    - `updated_at` string
    - `publish` object — Publish status per integration, when the document has been published.

## Other responses

- `404` — Document not found (or deleted)

---

[API](https://skmtc.net/eka/apis/eka-developer-apis.md) · [All operations](https://skmtc.net/eka/apis/eka-developer-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/eka/eka-developer-apis/revisions/9ea23456f722/schema)
