Skip to main content
GET
/
v2
/
usage.teamLog
ListTeamUsageLog
curl --request GET \
  --url https://api.manus.ai/v2/usage.teamLog \
  --header 'x-manus-api-key: <api-key>'
{
  "ok": true,
  "request_id": "<string>",
  "data": [
    {
      "user_id": "<string>",
      "user_name": "<string>",
      "email": "<string>",
      "task_count": 123,
      "credits": 123
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}
Questions or issues? Contact us at api-support@manus.ai.
Team only: This endpoint is only available to team users. Individual users will receive a permission_denied error.
Visibility: Owner / Super Admin / Admin sees every team member’s row. Member sees only their own row.
Data freshness: Enterprise teams have T+1 latency — today’s data becomes visible the next day because it is sourced from an offline sync table. Non-Enterprise teams aggregate in real time.

Authorizations

x-manus-api-key
string
header
required

Query Parameters

limit
integer

Number of records to return per page. Default: 20, Max: 100.

cursor
string

Pagination cursor from the previous response's next_cursor field. Omit for the first page.

start_date
integer

Filter start time as a Unix timestamp in seconds.

end_date
integer

Filter end time as a Unix timestamp in seconds.

sort_by
enum<string>

Field to sort by. Default: task_count.

Available options:
task_count,
credits
is_asc
boolean

Sort in ascending order. Default: false (descending).

Response

Team usage log retrieved successfully.

ok
boolean

Whether the request was successful.

Example:

true

request_id
string

Unique identifier for this API request.

data
object[]

Array of per-user daily consumption records.

has_more
boolean

Whether there are more records beyond this page. If true, use next_cursor to fetch the next page.

next_cursor
string

Cursor to pass as the cursor parameter for the next page. Only present when has_more is true.