Get Talonic Document
talonic_get_documentCheck a document's metadata and processing status by providing its document ID.
Instructions
Fetch a single document's metadata and processing status from the workspace.
USE WHEN: 'tell me about document X', or to poll status after talonic_request_upload until the file is ready.
NOT FOR: full text (use talonic_to_markdown) · extracted fields (use talonic_extract).
BY NAME: if the user names a file, call talonic_search first to get its document_id, then call this.
ARGS: document_id.
RETURNS: filename, pages, type_detected, language, and status. Status lifecycle: pending_upload -> queued -> extracting -> completed. Wait for completed before calling talonic_extract on a freshly uploaded doc. To read the document's text, call talonic_to_markdown with this id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| document_id | Yes | The Talonic document ID. Get this from a previous talonic_extract or talonic_search response. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ||
| filename | No | ||
| pages | No | ||
| size_bytes | No | ||
| mime_type | No | ||
| type_detected | No | ||
| language_detected | No | ||
| status | No | ||
| source | No | ||
| triage | No | ||
| original_path | No | ||
| extraction_count | No | ||
| latest_extraction_id | No | ||
| processing_log | No | ||
| created_at | No | ||
| links | No |