Skip to content
Get started

Files

Upload and manage spreadsheet files. Files must be Excel (.xlsx) format.

List files
$ deeptable files list
GET/v1/files
Upload a file
$ deeptable files upload
POST/v1/files
Delete a file
$ deeptable files delete
DELETE/v1/files/{file_id}
Get file metadata
$ deeptable files retrieve
GET/v1/files/{file_id}
Download file
$ deeptable files download
GET/v1/files/{file_id}/content
ModelsExpand Collapse
file: object { id, content_type, created_at, 3 more }

Response representing an uploaded file.

This is returned from POST (upload), GET (retrieve), and list endpoints.

id: string

The unique identifier for this file.

content_type: string

The MIME type of the file.

created_at: string

The timestamp when the file was uploaded.

file_name: string

The original filename of the uploaded file.

object: "file"

The object type, which is always 'file'.

"file"
size: number

The size of the file in bytes.