List Multipart Uploads
GET/v1/files/uploads
Authorization
Authorizationstringrequired
Bearer token for API authentication. Format: `Bearer YOUR_API_KEY`
Request
GET/v1/files/uploads
from mixedbread import Mixedbread
mxbai = Mixedbread(api_key="YOUR_API_KEY")
res = mxbai.files.uploads.list()
print(res)Response
JSON
{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"filename": "large-document.pdf",
"file_size": 104857600,
"mime_type": "application/pdf",
"part_count": 10,
"created_at": "2025-01-15T10:00:00.000Z"
}
]
}Last updated: March 13, 2026