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

# 获取路由榜单与模型池

> 免登录获取智能路由榜单：5 大类 23 个子维度的模型评分，以及按厂商分组的在池模型池

## 请求参数

此接口为免登录开放接口，无需身份认证，前端页面与第三方可直接调用。已启用 CORS，受全局 API 限流约束。无请求参数。

## 响应参数

响应为原样 JSON 对象（不包含 `success` / `data` 包装），与前端榜单数据结构对齐。

<ResponseField name="dims" type="object">
  各维度榜单。键为维度名（共 5 大类 23 个子维度，见下表），值为该维度下的模型数组，按分数降序排列。仅包含当前可被正常路由的模型；被手动剔除的模型不会出现。模型无某子维度的专属评分时，会沿维度回退链（如 `text.coding` → `text.overall`）取父维度分数参与该子维度排名。

  <ResponseField name="m" type="string">
    模型名称。
  </ResponseField>

  <ResponseField name="v" type="string">
    模型厂商 id（小写）。可用作[获取在池厂商与图标](/cn/api/RouterEndpoints/vendors)接口返回对象的键；该接口结果有 5 分钟缓存，新入池厂商可能短暂查不到，键缺失时请自行回退。
  </ResponseField>

  <ResponseField name="s" type="number">
    归一化分数（0–100，保留 1 位小数）。模型无该子维度专属评分时，为回退父维度分数归一化所得。
  </ResponseField>

  <ResponseField name="pin" type="number">
    输入价格系数。为平台计费系数原始值，非美元单价，仅适合做模型间相对比较；美元单价请通过[模型管理API](/cn/api/Models-API)查询。
  </ResponseField>

  <ResponseField name="pout" type="number">
    输出价格倍率，是相对输入价的倍数而非独立价格。模型的输出价格系数 = `pin` × `pout`，请勿用 `pout` 直接跨模型比较输出价格。
  </ResponseField>

  <ResponseField name="lat" type="integer">
    首字延迟（毫秒）。无实测数据时为 `null`。
  </ResponseField>
</ResponseField>

<ResponseField name="pool" type="object">
  路由模型池。键为厂商 id，值为该厂商当前在池的模型名数组（按字母序）。
</ResponseField>

<ResponseField name="poolCount" type="integer">
  在池模型总数（去重后）。
</ResponseField>

## 维度列表

| 大类      | 子维度                                                                                                                                                                                                                                                               |
| ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 文本（11）  | `text.overall`、`text.coding`、`text.math`、`text.instruction_following`、`text.longer_query`、`text.language.chinese`、`text.language.english`、`text.occupational.software_it`、`text.occupational.mathematical`、`text.occupational.legal`、`text.occupational.medicine` |
| 视觉（6）   | `vision.overall`、`vision.ocr`、`vision.diagram`、`vision.homework`、`vision.chinese`、`vision.english`                                                                                                                                                                |
| 网页开发（4） | `code_webdev.overall`、`code_webdev.html`、`code_webdev.react`、`code_image_to_webdev.overall`                                                                                                                                                                       |
| 搜索（1）   | `search.overall`                                                                                                                                                                                                                                                  |
| 文档（1）   | `document.overall`                                                                                                                                                                                                                                                |

以上 23 个子维度是[模型智能路由](/cn/api/auto-router)内置 30+ 路由维度中面向公众展示的子集，不含图像/视频生成类维度。

<ResponseExample>
  ```json 200 theme={null}
  {
    "dims": {
      "text.coding": [
        { "m": "claude-opus-4-6", "v": "anthropic", "s": 85.4, "pin": 2.5, "pout": 5, "lat": 822 }
      ]
    },
    "pool": {
      "anthropic": ["claude-opus-4-6"]
    },
    "poolCount": 37
  }
  ```
</ResponseExample>

***

更新时间：2026-07-13
