> ## 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（小寫）。可用作[取得在池廠商與圖示](/zh-Hant/api/RouterEndpoints/vendors)介面回傳物件的鍵；該介面結果有 5 分鐘快取，新入池廠商可能短暫查不到，鍵缺失時請自行回退。
  </ResponseField>

  <ResponseField name="s" type="number">
    正規化分數（0–100，保留 1 位小數）。模型無該子維度專屬評分時，為回退父維度分數正規化所得。
  </ResponseField>

  <ResponseField name="pin" type="number">
    輸入價格係數。為平台計費係數原始值，非美元單價，僅適合做模型間相對比較；美元單價請透過[模型管理 API](/zh-Hant/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 個子維度是[模型智慧路由](/zh-Hant/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
