Upload a file
POST/v1/files
Upload an Excel spreadsheet file for later processing.
Supported formats:
- Excel (.xlsx)
Maximum file size: 100 MB
Returns
Upload a file
curl https://api.deeptable.com/v1/files \
-H 'Content-Type: multipart/form-data' \
-H "Authorization: Bearer $DEEPTABLE_API_KEY" \
-F file=undefined{
"id": "file_01abc2def3ghjkmnpqrs4uvwxy",
"content_type": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"created_at": "2024-01-15T10:30:00Z",
"file_name": "financial_report.xlsx",
"size": 1048576,
"object": "file"
}Returns Examples
{
"id": "file_01abc2def3ghjkmnpqrs4uvwxy",
"content_type": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"created_at": "2024-01-15T10:30:00Z",
"file_name": "financial_report.xlsx",
"size": 1048576,
"object": "file"
}