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

# GET /api/models — 列出可用的 Aria 模型包

> 返回每个已发布的 Aria 模型包，含 slug、量化选项、大小与 SDK 兼容性。公开接口，无需认证。

返回每个已发布的 Aria 模型包，含 slug、量化选项、大小与 SDK 兼容性。本接口公开；在你选择下载哪个模型包之前，可免认证浏览目录。

**方法：** `GET` **路径：** `/api/models` **认证：** 无

## 响应

模型记录数组。

<ResponseField name="slug" type="string">
  模型包 slug（例如 `gemma-4-e2b-it`）。
</ResponseField>

<ResponseField name="name" type="string">
  显示名称。
</ResponseField>

<ResponseField name="family" type="string">
  模型系列。
</ResponseField>

<ResponseField name="sdk" type="string">
  最新的兼容 SDK 版本（例如 `v1.0`）。
</ResponseField>

<ResponseField name="quants" type="string[]">
  可用的量化值：任意 `int4`、`int8`、`int326` 子集。
</ResponseField>

<ResponseField name="size_bytes" type="number">
  模型包近似大小（字节）。
</ResponseField>

<ResponseField name="description" type="string">
  简短描述。
</ResponseField>

## 示例

```bash theme={null}
curl https://ariacompute.cn/api/models
```

```json theme={null}
[
  {
    "slug": "gemma-4-e2b-it",
    "name": "Gemma 4 E2B Instruct",
    "family": "gemma",
    "sdk": "v1.0",
    "quants": ["int4", "int8"],
    "size_bytes": 2147483648,
    "description": "Instruction-tuned Gemma 4 for on-device inference."
  }
]
```

## 相关

* [下载模型包](/api-reference/models/download)
* [模型概念页](/concepts/models)
