Parameters
1 query
Query parameters
· 1tokenstringRequiredUnique file token.
aB3xKm9pQ2wLn4YzReturns complete information about a file including metadata, URLs for download and viewing. Use this endpoint to get all data needed to display file details in the UI.
1 query
tokenstringRequiredUnique file token.
aB3xKm9pQ2wLn4Yz1 status code documented
tokenstringRequiredUnique file token.
filenamestringRequiredFile name.
extensionstringOptionalFile extension (e.g., "pdf", "jpg").
sizenumberRequiredFile size in bytes.
sizeFormattedstringRequiredHuman-readable file size (e.g., "1.5 MB").
contentTypestringRequiredMIME type (e.g., "application/pdf", "image/jpeg").
tagstringOptionalFile tag/category if assigned.
insertedDatestringRequiredDate when the file was uploaded (ISO format).
folderIdnumberOptionalParent folder ID if file is in a folder.
folderPathstringOptionalFull folder path (e.g., "documents/invoices").
blobPathstringRequiredInternal storage path.
downloadUrlstringOptionalDirect URL to download the file.
viewUrlstringRequiredURL to view/stream the file content via the viewer endpoint.
{
"token": "example_token",
"filename": "example_filename",
"extension": "example_extension",
"size": 0,
"sizeFormatted": "example_sizeFormatted",
"contentType": "example_contentType",
"tag": "example_tag",
"insertedDate": "example_insertedDate",
"folderId": 0,
"folderPath": "example_folderPath",
"blobPath": "example_blobPath",
"downloadUrl": "example_downloadUrl",
"viewUrl": "example_viewUrl"
}GET /bff/drive/detail
curl -X GET "https://api.bizkithub.com/bff/drive/detail?token=aB3xKm9pQ2wLn4Yz" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.