> ## 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.

# usage.teamLog

> Lists team members' task counts and total credit consumption over the requested range — one row per user.

<sup>Questions or issues? Contact us at [api-support@manus.ai](mailto:api-support@manus.ai).</sup>

<Tip>
  **Auth:** API Key only — not available with OAuth tokens.
</Tip>

<Warning>
  **Team only:** This endpoint is only available to team users. Individual users will receive a `permission_denied` error.
</Warning>

<Tip>
  **Visibility:** Owner / Super Admin / Admin sees every team member's row. Member sees only their own row.
</Tip>

<Warning>
  **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.
</Warning>


## OpenAPI

````yaml GET /v2/usage.teamLog
openapi: 3.1.0
info:
  title: Manus OpenAPI v2
  description: >-
    API for integrating Manus into your workflow. All responses are wrapped with
    {"ok": true, "request_id": "...", ...} for success and {"ok": false,
    "request_id": "...", "error": {"code": "...", "message": "..."}} for errors.
  version: 2.0.0
servers:
  - url: https://api.manus.ai
security:
  - ApiKeyAuth: []
paths:
  /v2/usage.teamLog:
    get:
      summary: ListTeamUsageLog
      description: >-
        Lists team members' task counts and total credit consumption over the
        requested range — one row per user.
      operationId: openapi.v2.OpenapiV2Service.ListTeamUsageLog
      parameters:
        - name: x-manus-api-key
          in: header
          required: true
          schema:
            type: string
          description: >-
            API key for authentication. This endpoint does not support OAuth2
            tokens. See
            [Authentication](https://open.manus.ai/docs/v2/authentication).
        - name: limit
          in: query
          schema:
            type: integer
            description: 'Number of records to return per page. Default: 20, Max: 100.'
        - name: cursor
          in: query
          schema:
            type: string
            description: >-
              Pagination cursor from the previous response's next_cursor field.
              Omit for the first page.
        - name: start_date
          in: query
          schema:
            type: integer
            description: Filter start time as a Unix timestamp in seconds.
        - name: end_date
          in: query
          schema:
            type: integer
            description: Filter end time as a Unix timestamp in seconds.
        - name: sort_by
          in: query
          schema:
            type: string
            description: 'Field to sort by. Default: `task_count`.'
            enum:
              - task_count
              - credits
        - name: is_asc
          in: query
          schema:
            type: boolean
            description: 'Sort in ascending order. Default: false (descending).'
      responses:
        '200':
          description: Team usage log retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  ok:
                    type: boolean
                    example: true
                    description: Whether the request was successful.
                  request_id:
                    type: string
                    description: Unique identifier for this API request.
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/TeamUsageLog'
                    description: Array of per-user daily consumption records.
                  has_more:
                    type: boolean
                    description: >-
                      Whether there are more records beyond this page. If true,
                      use next_cursor to fetch the next page.
                  next_cursor:
                    type: string
                    description: >-
                      Cursor to pass as the cursor parameter for the next page.
                      Only present when has_more is true.
        4XX:
          description: Error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security: []
components:
  schemas:
    TeamUsageLog:
      type: object
      description: >-
        Per-user aggregated task count and credit consumption over the requested
        range. One row per team member.
      properties:
        user_id:
          type: string
          description: Team member's user ID.
        user_name:
          type: string
          description: Team member's display name.
        email:
          type: string
          description: Team member's email address.
        task_count:
          type: integer
          description: Number of tasks the member created within the requested range.
        credits:
          type: integer
          description: Total credits consumed by this user within the requested range.
    ErrorResponse:
      type: object
      description: Standard error response format returned when a request fails.
      properties:
        ok:
          type: boolean
          example: false
          description: Always false for error responses.
        request_id:
          type: string
          description: >-
            Unique identifier for this API request, useful for debugging with
            support.
        error:
          type: object
          description: Error details.
          properties:
            code:
              type: string
              description: >-
                Machine-readable error code (e.g., "invalid_argument",
                "not_found", "permission_denied", "rate_limited").
            message:
              type: string
              description: Human-readable error description explaining what went wrong.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-manus-api-key

````