> ## 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.

# Upload files



## OpenAPI

````yaml /openapi.json post /file-vault/upload
openapi: 3.1.0
info:
  title: TitleTrackr Developer API
  version: 1.0.0
  description: Push orders and documents into TitleTrackr.
servers:
  - url: https://api.titletrackr.com/v1
security:
  - bearerAuth: []
paths:
  /file-vault/upload:
    post:
      summary: Upload files
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
                - files
              properties:
                files:
                  type: array
                  items:
                    type: string
                    format: binary
                folder_id:
                  type: integer
      responses:
        '201':
          description: Upload result
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  message:
                    type: string
                  files:
                    type: array
                    items:
                      $ref: '#/components/schemas/FileVaultFile'
                  errors:
                    type: array
                    items:
                      type: object
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '422':
          $ref: '#/components/responses/ValidationError'
components:
  schemas:
    FileVaultFile:
      type: object
      properties:
        id:
          type: integer
        filename:
          type: string
        file_type:
          type: string
        mime_type:
          type: string
        page_count:
          type: integer
          nullable: true
        file_size:
          type: integer
        file_size_human:
          type: string
        folder_id:
          type: integer
          nullable: true
        is_processing:
          type: boolean
        download_url:
          type: string
          description: >-
            Token-authenticated download endpoint. Call it with your API key; it
            redirects to a short-lived pre-signed URL you can follow in a
            browser or with curl -L.
        created_at:
          type: string
          format: date-time
  responses:
    Unauthorized:
      description: Missing or invalid API key.
    Forbidden:
      description: Key not authorized for the Developer API.
    ValidationError:
      description: Validation failed.
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
              errors:
                type: object
                additionalProperties:
                  type: array
                  items:
                    type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````