> ## 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개 하위 차원의 모델 점수와 벤더별로 그룹화된 풀 내 모델 목록

## 요청 파라미터

이 API는 로그인 없이 사용할 수 있는 오픈 엔드포인트입니다. 인증이 필요 없으며 프론트엔드 페이지나 서드파티에서 직접 호출할 수 있습니다. 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(소문자). [풀 내 벤더 및 아이콘](/ko/api/RouterEndpoints/vendors) 응답 객체의 키로 사용할 수 있습니다. 해당 엔드포인트 결과에는 5분 캐시가 있어 새로 풀에 들어온 벤더는 잠시 조회되지 않을 수 있으므로, 키가 없을 때는 자체 폴백을 사용하세요.
  </ResponseField>

  <ResponseField name="s" type="number">
    정규화 점수(0–100, 소수점 1자리). 모델에 해당 하위 차원 전용 점수가 없으면 폴백된 상위 차원 점수를 정규화한 값입니다.
  </ResponseField>

  <ResponseField name="pin" type="number">
    입력 가격 계수. 플랫폼 과금 계수의 원본 값이며 미국 달러 단가가 아니므로 모델 간 상대 비교에만 적합합니다. 미국 달러 단가는 [모델 관리 API](/ko/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개 하위 차원은 [모델 자동 라우팅(Auto Router)](/ko/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
