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

# File Vault Overview

> Push documents into the TitleTrackr File Vault.

The File Vault API lets you upload documents into TitleTrackr's File Vault and
organize them into folders.

## Endpoints

| Method | Path                     | Description               |
| ------ | ------------------------ | ------------------------- |
| `GET`  | `/v1/file-vault/folders` | List folders.             |
| `POST` | `/v1/file-vault/folders` | Create a folder.          |
| `POST` | `/v1/file-vault/upload`  | Upload one or more files. |

## Typical flow

<Steps>
  <Step title="Create or find a folder (optional)">
    [Create a folder](/file-vault/folders) to organize uploads, or upload to the
    workspace root.
  </Step>

  <Step title="Upload your documents">
    [`POST /file-vault/upload`](/file-vault/upload) with your files as
    `multipart/form-data`.
  </Step>
</Steps>

## Supported file types

PDF, DOCX, DOC, PPTX, PPT, TXT, XLSX, XLS, PNG, JPG, JPEG, TIFF, GIF, BMP, WEBP.

<Note>
  Limits: up to 100 MB per file and 500 pages per PDF. Image-heavy PDFs have
  tighter limits (50 MB / 300 pages). Files that exceed a limit are rejected
  with a reason in the `errors` array — see [Upload Files](/file-vault/upload).
</Note>
