Get Talonic Document
talonic_get_documentFetch full metadata for a document in your Talonic workspace using its document ID. Get details like filename, page count, type, language, and processing log.
Instructions
STATUS: stable.
Fetch full metadata for a single document already in the user's Talonic workspace. Returns id, filename, page count, detected document type, language, processing log, and link URLs (self, extractions, dashboard).
USE WHEN:
You need details about a specific document the user already extracted or uploaded.
You have a document_id from a previous extract or search call and want more context.
The user asks 'tell me about document X' or similar.
DO NOT USE WHEN:
The user wants the document's full text content (use talonic_to_markdown for OCR markdown).
The user wants extracted structured data (use talonic_extract with a schema, or fetch the extraction by id).
The user has a file but no document_id yet (call talonic_extract first to ingest the document).
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 |