> ## Documentation Index
> Fetch the complete documentation index at: https://docs.trae.cn/llms.txt
> Use this file to discover all available pages before exploring further.

获取指定时间范围内，指定部门的 AI 使用数据汇总与逐日数据。

## 所需权限 {#所需权限}

`statistics:read`

## 请求说明 {#请求说明}

* 请求方式：`POST`
* 请求地址：`{域名}/openapi/v1/statistics/department-metrics`

## 注意事项 {#注意事项}


* 统计数据按照用量发生时的部门归属聚合。成员变更部门后，变更前的数据仍归属原部门；同一天内变更部门时，当日数据归入新部门。
* 时间跨度最长为 180 天。

## 请求参数 {#请求参数}

### 请求头参数 {#请求头参数}

<!-- @cols-width: 172,122,596 -->
| **Header 参数**  | **是否必填**  | **描述**  |
| --- | --- | --- |
| `Authorization`  | 是  | 固定取值为 `Bearer {access_token}`。关于如何获取访问令牌，参考[鉴权](enterprise_authentication)。  |
| `Content-Type`  | 是  | 固定取值为 `application/json`。  |

### 请求体参数 {#请求体}

<!-- @cols-width: 162,102,100,153,381 -->
| **参数**  | **类型**  | **是否必填**  | **默认值**  | **描述**  |
| --- | --- | --- | --- | --- |
| `start_date`  | string  | 是  | \-  | 开始日期。格式：YYYY-MM-DD。  |
| `end_date`  | string  | 是  | \-  | 结束日期。格式：YYYY-MM-DD。  |
| `timezone`  | string  | 否  | `"Asia/Shanghai"`  | 时区。需使用 IANA 时区名称。  |
| `department_ids`  | string[]  | 是  | \-  | 目标部门的 ID 列表。范围为 1 至 100 个。 | \
| | | | | | \
| | | | | 部门 ID 可以通过 “[获取单个父部门的子部门](/enterprise_get-the-subdepartments-for-a-specified-parent-department)” 接口或 ”[按关键词搜索部门](/enterprise_query-department-by-keyword)“ 接口获取。  |
| `include_subtree`  | bool  | 否  | `true`  | 是否返回目标部门的所有后代部门的数据： | \
| | | | | | \
| | | | | * `true` / `null` / 省略：包含目标部门的所有后代部门的数据 | \
| | | | | * `false`：仅包含目标部门的数据  |

## 响应参数 {#响应参数}

响应数据按部门维度组织，返回每个指定部门各自的 AI 使用数据。

<!-- @cols-width: 275,146,481 -->
| **参数**  | **类型**  | **描述**  |
| --- | --- | --- |
| `departments`  | array  | 部门维度的结果列表。  |
| `departments[].department_id`  | string  | 部门的 ID，以十进制字符串返回。  |
| `departments[].department_name`  | string  | 部门的名称。  |
| `departments[].full_path`  | string  | 部门的完整归属路径。各级部门名称以 `/` 分隔。  |
| `departments[].metrics`  | object  | 部门在统计周期内的汇总数据。  |
| `departments[].daily_trend`  | array  | 部门的逐日数据。  |

`metrics` 对象和 `daily_trend` 数组包含以下参数：

<!-- @cols-width: 209,114,586 -->
| **参数**  | **类型**  | **描述**  |
| --- | --- | --- |
| `date`  | string  | 日期。格式：YYYY-MM-DD。该参数为 `daily_trend` 数组独有。  |
| `ai_generation_rate`  | float64  | AI 生成代码在总代码产出中的占比（%）。 | \
| | | | \
| | | ***计算公式***：（`ai_generated_code_lines` ÷ 期间内生成的总代码行数）× 100%。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `ai_contribution_rate`  | float64  | AI 代码贡献率。表示最终提交到仓库的代码中，AI 生成代码的占比（%）。 | \
| | | | \
| | | ***计算公式***：（`ai_commit_lines` ÷ `total_commit_lines`）× 100%。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `ai_generated_code_lines`  | int64  | 在问答和自动补全功能中，AI 生成的代码总行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `chat_code_gen_lines`  | int64  | 在问答功能中，AI 生成的总代码行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `chat_code_accept_lines`  | int64  | 在问答功能中，AI 生成的代码被采纳的总行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `cue_recommend_count`  | int64  | CUE 提供代码建议的总次数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `cue_recommend_accepted`  | int64  | CUE 提供的代码建议被采纳的总次数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `ai_commit_lines`  | int64  | AI 生成的代码被提交到仓库的总行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `non_ai_commit_lines`  | int64  | 非 AI 生成的代码被提交到仓库的总行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `total_commit_lines`  | int64  | 提交到仓库的总代码行数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `total_requests`  | int64  | 总问答次数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin、TraeCode CLI、TraeWork 桌面版与网页版、TRAE 移动端。  |
| `chat_requests`  | int64  | 与内置智能体 “Chat” 产生的问答次数。 | \
| | | | \
| | | ***数据来源***：TraeCode、TraeCode Plugin。  |
| `agent_requests`  | int64  | 含以下两部分指标： | \
| | | | \
| | | * 在 TraeCode 中，与内置智能体 “Agent” 与 “SOLO Agent”，以及自定义智能体产生的问答次数。 | \
| | | * 在 TraeCode Plugin 中，与内置智能体 “Agent” 与自定义智能体产生的问答次数。  |
| `agent_accepted_requests`  | int64  | 含以下两部分指标： | \
| | | | \
| | | * 在 TraeCode 中，内置智能体 “Agent” 与 “SOLO Agent”，以及自定义智能体的输出被采纳的次数。 | \
| | | * 在 TraeCode Plugin 中，内置智能体 “Agent” 与自定义智能体的输出被采纳的次数。  |
| `cli_requests`  | int64  | 在 TraeCode CLI 中产生的问答次数。  |
| `work_requests`  | int64  | 在 TraeWork 桌面版与网页版，以及 TRAE 移动端中产生的问答次数。  |

## 示例 {#示例}

### 请求示例 {#请求示例}

```Bash
curl -X POST "${HOST}/openapi/v1/statistics/department-metrics" \
  -H "Authorization: Bearer ${ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "start_date": "2026-08-01",
    "end_date": "2026-08-15",
    "department_ids": [
      "20001"
    ],
    "include_subtree": false
  }'
```

### 响应示例 {#响应示例}

```JSON
{
  "code": 0,
  "message": "success",
  "request_id": "req_xxx",
  "data": {
    "departments": [
      {
        "department_id": "10001",
        "department_name": "研发部",
        "full_path": "公司/研发部",
        "metrics": {
          "ai_generation_rate": 0.68,
          "ai_contribution_rate": 0.42,
          "ai_generated_code_lines": 12000,
          "chat_code_gen_lines": 8600,
          "chat_code_accept_lines": 5200,
          "cue_recommend_count": 3400,
          "cue_recommend_accepted": 2100,
          "ai_commit_lines": 7600,
          "non_ai_commit_lines": 10400,
          "total_commit_lines": 18000,
          "total_requests": 9800,
          "chat_requests": 6200,
          "agent_requests": 2300,
          "agent_accepted_requests": 1500,
          "cli_requests": 900,
          "work_requests": 400
        },
        "daily_trend": [
          {
            "date": "2026-08-01",
            "ai_generation_rate": 0.65,
            "ai_contribution_rate": 0.4,
            "ai_generated_code_lines": 420,
            "chat_code_gen_lines": 300,
            "chat_code_accept_lines": 180,
            "cue_recommend_count": 120,
            "cue_recommend_accepted": 80,
            "ai_commit_lines": 260,
            "non_ai_commit_lines": 390,
            "total_commit_lines": 650,
            "total_requests": 360,
            "chat_requests": 220,
            "agent_requests": 90,
            "agent_accepted_requests": 60,
            "cli_requests": 35,
            "work_requests": 15
          }
        ]
      }
    ]
  }
}
```

## 错误码 {#错误码}

若该接口的请求返回错误码，参考[错误码](/enterprise_error-codes)文档进行排查。
