Skip to main content
POST
/
dataexport.v1.EnterpriseDataExportService
/
GetDownloadURL
GetDownloadURL
curl --request POST \
  --url https://api.manus.im/dataexport.v1.EnterpriseDataExportService/GetDownloadURL \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "uid": "5YX76pz7Dga3yztNVw97Dh"
}
'
{
  "download_url": "<string>",
  "expires_at": "2023-11-07T05:31:56Z",
  "request_id": "<string>"
}
Questions or issues? Contact us at api-support@manus.ai.
URL validity: The returned download_url expires after 10 minutes. Call this endpoint again to mint a fresh URL — it does not consume any quota.Status requirement: The export must be EXPORT_STATUS_COMPLETED. Other statuses return FAILED_PRECONDITION.File retention: Files are purged 30 days after the export completes.

Authorizations

X-API-Key
string
header
required

Body

application/json
uid
string
required

Export task UID. Status must be EXPORT_STATUS_COMPLETED.

Example:

"5YX76pz7Dga3yztNVw97Dh"

Response

Download URL minted successfully.

download_url
string

Pre-signed S3 URL for downloading the export archive.

expires_at
string<date-time>

URL expiration time. Typically 10 minutes after issuance.

request_id
string

Request ID for tracing and auditing.