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

# 模型信息

> 检查模型信息

端点（Endpoint）：`GET /v1/models/:model`

### 请求参数

| 名称    | 位置   | 类型     | 必选 | 说明   |
| ----- | ---- | ------ | -- | ---- |
| model | path | string | 是  | none |

**返回示例：**

```json theme={null}
200 Response
```

```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    | none | Inline |

### 返回数据结构

状态码 **200**

| 名称                       | 类型        | 必选    | 约束   | 中文名   | 说明   |
| ------------------------ | --------- | ----- | ---- | ----- | ---- |
| id                       | string    | true  | none | 模型 ID | none |
| object                   | string    | true  | none | model | none |
| created                  | integer   | true  | none | 创建时间  | none |
| owned\_by                | string    | true  | none | 开发者   | none |
| permission               | \[object] | true  | none |       | none |
| » id                     | string    | false | none |       | none |
| » object                 | string    | false | none |       | none |
| » created                | integer   | false | none |       | none |
| » allow\_create\_engine  | boolean   | false | none |       | none |
| » allow\_sampling        | boolean   | false | none |       | none |
| » allow\_logprobs        | boolean   | false | none |       | none |
| » allow\_search\_indices | boolean   | false | none |       | none |
| » allow\_view            | boolean   | false | none |       | none |
| » allow\_fine\_tuning    | boolean   | false | none |       | none |
| » organization           | string    | false | none |       | none |
| » group                  | null      | false | none |       | none |
| » is\_blocking           | boolean   | false | none |       | none |
| root                     | string    | true  | none | 模型名称  | none |
| parent                   | null      | true  | none | 父节点   | none |
