Returns file metadata (content excluded). Commonly used to confirm that the post-upload safety scan status has transitioned to available.
Prerequisites
Endpoint and authentication are configured. See Overview and authentication.
Endpoint
GET /files/{file_id}
Returns file metadata (filename, size_bytes, mime_type, created_at, status); content is not included. The scope field is returned only on session-sandbox internal copies.
Status values
status reports the safety scan result. Values: available (passed; mountable into sessions), checking (in progress), rejected (content failed review), type_rejected (file type unsupported). Only files with status available can be mounted into a session or referenced as message content.
Request example
curl "$AGENTSTUDIO_URL/files/file_xxx" \
-H "Authorization: Bearer $DASHSCOPE_API_KEY"file = client.files.retrieve("file_xxx")
print(file.filename, file.size_bytes, file.mime_type)AgentStudioFile f = client.files().retrieve("file_xxx");
System.out.println(f.getFilename() + " " + f.getSizeBytes());Response example
{
"id": "file_xxx",
"type": "file",
"filename": "sales_2025.csv",
"downloadable": false,
"mime_type": "text/csv",
"size_bytes": 524288,
"status": "available",
"created_at": "2026-06-16T14:51:39+08:00",
"requestId": "xxx"
}
The response is a File object. Fields:
Response fields
|
Field |
Type |
Description |
|
|
string |
File ID, formatted as |
|
|
string |
Fixed value |
|
|
string |
File name |
|
|
string |
MIME type detected by the server |
|
|
int |
File size in bytes |
|
|
bool |
Whether the file is downloadable. For direct uploads through this endpoint and session-sandbox copies, this is always |
|
|
string |
Safety scan status: |
|
|
object |
Returned only for session-sandbox internal copies; shape |
|
|
string |
Upload time, ISO 8601 |
|
|
string |
The request ID. |