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

# 모델 정보

> 모델 정보 확인

엔드포인트: `GET /v1/models/:model`

### 요청 매개변수

| 이름    | 위치   | 유형     | 필수 | 설명 |
| ----- | ---- | ------ | -- | -- |
| model | path | string | 예  | 없음 |

**응답 예시:**

```json theme={null}
200 응답
```

```json theme={null}
{
  "id": "string",
  "object": "string",
  "created": 0,
  "owned_by": "string",
  "permission": [
    {
      "id": "string",
      "object": "string",
      "created": 0,
      "allow_create_engine": true,
      "allow_sampling": true,
      "allow_logprobs": true,
      "allow_search_indices": true,
      "allow_view": true,
      "allow_fine_tuning": true,
      "organization": "string",
      "group": null,
      "is_blocking": true
    }
  ],
  "root": "string",
  "parent": null
}
```

### 응답

| 상태 코드 | 설명 | 세부사항 | 데이터 모델 |
| ----- | -- | ---- | ------ |
| 200   | OK | 없음   | 인라인    |

### 응답 데이터 구조

상태 코드 **200**

| 이름                       | 유형        | 필수    | 제약 | 한국어 이름 | 설명 |
| ------------------------ | --------- | ----- | -- | ------ | -- |
| id                       | string    | true  | 없음 | 모델 ID  | 없음 |
| object                   | string    | true  | 없음 | model  | 없음 |
| created                  | integer   | true  | 없음 | 생성 시간  | 없음 |
| owned\_by                | string    | true  | 없음 | 개발자    | 없음 |
| permission               | \[object] | true  | 없음 |        | 없음 |
| » id                     | string    | false | 없음 |        | 없음 |
| » object                 | string    | false | 없음 |        | 없음 |
| » created                | integer   | false | 없음 |        | 없음 |
| » allow\_create\_engine  | boolean   | false | 없음 |        | 없음 |
| » allow\_sampling        | boolean   | false | 없음 |        | 없음 |
| » allow\_logprobs        | boolean   | false | 없음 |        | 없음 |
| » allow\_search\_indices | boolean   | false | 없음 |        | 없음 |
| » allow\_view            | boolean   | false | 없음 |        | 없음 |
| » allow\_fine\_tuning    | boolean   | false | 없음 |        | 없음 |
| » organization           | string    | false | 없음 |        | 없음 |
| » group                  | null      | false | 없음 |        | 없음 |
| » is\_blocking           | boolean   | false | 없음 |        | 없음 |
| root                     | string    | true  | 없음 | 모델 이름  | 없음 |
| parent                   | null      | true  | 없음 | 부모 노드  | 없음 |
