Get public upload metadata
Retrieves technical metadata for a public upload including dimensions, duration, codec info, and EXIF data. No authentication required.
JWT access token obtained via OAuth2 flow or service account
In: header
Header Parameters
Define the version of the Connect protocol
1Define the timeout, in ms
Request Body
application/json
Reference to the bucket
Full path including slug (e.g., "/photos/image.jpg" or "/" for root listing)
^\/([a-zA-Z0-9 _\-\.\/\:\(\)\',@#\+&~!%\[\]]*)?$1 <= length <= 512Password for alias access (if required)
Response Body
application/json
application/json
curl -X POST "https://uploads-api.xeonr.io/uplim.api.v1.PublicUploadsService/GetPublicUploadMetadata" \ -H "Connect-Protocol-Version: 1" \ -H "Content-Type: application/json" \ -d '{}'{
"metadata": {
"archive": {
"totalFiles": 0,
"uncompressedSizeBytes": 0,
"compressedSizeBytes": 0,
"directories": [
{
"path": "string",
"directories": [
{
"path": "string",
"directories": [],
"files": [
{
"filename": "string",
"uncompressedSizeBytes": 0,
"compressedSizeBytes": 0
}
]
}
],
"files": [
{
"filename": "string",
"uncompressedSizeBytes": 0,
"compressedSizeBytes": 0
}
]
}
]
}
}
}{
"code": "not_found",
"message": "string",
"details": [
{
"type": "string",
"value": "string",
"debug": {}
}
]
}Get public upload POST
Retrieves a public upload, folder listing, or alias access requirement. Supports password-protected aliases. No authentication required.
Resolve public resource integrations POST
Resolves renderer integration for a public upload or folder. Returns renderer config and access tokens. Supports optional FedCM user authentication via Authorization header.