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

# Get Version

> GET /v1/documents/{document_id}/versions/{version_number}

# Get Version

```
GET /v1/documents/{document_id}/versions/{version_number}
```

Get a specific version of a document with its full content and blocks.

## Request

### Headers

| Header      | Required | Description  |
| ----------- | -------- | ------------ |
| `X-API-Key` | Yes      | Your API key |

### Path Parameters

| Parameter        | Type    | Required | Description        |
| ---------------- | ------- | -------- | ------------------ |
| `document_id`    | string  | Yes      | The document ID    |
| `version_number` | integer | Yes      | The version number |

### Example

```bash theme={null}
curl https://api.surfacedocs.dev/v1/documents/doc_abc123/versions/1 \
  -H "X-API-Key: sd_live_..."
```

## Response

**Status: 200 OK**

```json theme={null}
{
  "version": 1,
  "title": "Daily Report — Feb 13",
  "content_type": "markdown",
  "metadata": {"generated_at": "2026-02-13"},
  "blocks": [
    {
      "id": "blk_001",
      "order": 0,
      "type": "heading",
      "content": "Summary",
      "metadata": {"level": 1}
    },
    {
      "id": "blk_002",
      "order": 1,
      "type": "paragraph",
      "content": "Revenue: $38,000",
      "metadata": null
    }
  ],
  "created_at": "2026-02-13T10:00:00Z"
}
```
