Skip to main content
GET
/
v2
/
file.detail
cURL
curl --request GET \
  --url 'https://api.manus.ai/v2/file.detail?file_id=<string>' \
  --header 'x-manus-api-key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "file": {
    "id": "<string>",
    "filename": "<string>",
    "created_at": 123,
    "bytes": 123,
    "content_type": "<string>",
    "expires_at": 123,
    "error_message": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://open.manus.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Questions or issues? Contact us at api-support@manus.ai.
OAuth scope: create_task or manage_all_tasks — see the OAuth2 guide.

Headers

x-manus-api-key
string

API key for direct authentication. Provide either this or Authorization, not both. See Authentication.

Authorization
string

OAuth2 access token in Bearer {token} format. Provide either this or x-manus-api-key, not both. See the OAuth2 guide.

Example:

"Bearer {access_token}"

Query Parameters

file_id
string
required

The unique identifier of the file to retrieve.

Response

File retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

file
object

The file object with full details.