检索(用于视频下载,异步音频下载)
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location '/minimax/v1/files/retrieve?file_id=undefined' \
--header 'Authorization: Bearer <token>'
Responses
application/json
{
"file": {
"file_id": "${file_id}",
"bytes": 0,
"created_at": 1700469398,
"filename": "output_aigc.mp4",
"purpose": "video_generation",
"download_url": "www.downloadurl.com"
},
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
Modified at 2026-03-30 11:39:32