> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tryfltr.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Document

> Retrieve details of a specific document

## Request

Returns detailed information about a document including processing status and metadata.

### Path Parameters

<ParamField path="dataset_id" type="string" required>
  The parent dataset ID
</ParamField>

<ParamField path="document_id" type="string" required>
  The document ID
</ParamField>

## Examples

```bash cURL theme={null}
curl https://api.fltr.com/v1/datasets/ds_abc123/documents/doc_xyz789 \
  -H "Authorization: Bearer fltr_sk_abc123..."
```

### Response

```json theme={null}
{
  "document_id": "doc_xyz789",
  "dataset_id": "ds_abc123",
  "filename": "guide.pdf",
  "size_bytes": 1048576,
  "status": "ready",
  "chunks_created": 47,
  "processing_time_ms": 8450,
  "created_at": "2024-01-10T12:00:00Z",
  "processed_at": "2024-01-10T12:00:08Z",
  "metadata": {
    "title": "Product Guide",
    "category": "documentation"
  }
}
```
