Skip to main content
GET
/
v2
/
enterprise.export.list
ListExports
curl --request GET \
  --url https://api.manus.im/v2/enterprise.export.list \
  --header 'X-API-Key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "records": [
    {
      "uid": "<string>",
      "user_id": "123e4567-e89b-12d3-a456-426614174000",
      "file_url": "<string>",
      "file_size": 123,
      "file_size_human": "<string>",
      "url_expires_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "error_message": "<string>"
    }
  ],
  "total": 123
}
Questions or issues? Contact us at api-support@manus.ai.
User identifier: user accepts either a user ID or an email address.Pagination: Page-based — page starts at 1, default page_size is 10. Use total from the response to compute the page count.Protocols: Also callable via Connect RPC. See Protocols.

Authorizations

X-API-Key
string
header
required

Query Parameters

user
string
required

User ID or email address to look up exports for.

Example:

"user@example.com"

page
integer<int32>
default:1

Page number, starting from 1.

Example:

1

page_size
integer<int32>
default:10

Number of records per page.

Example:

10

Response

Export records retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

records
object[]

List of export records, ordered by creation time descending.

total
integer<int32>

Total number of records matching the query (across all pages).