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

# 列出全部模型导出任务 - PIN API

> 列出 PIN 控制平面中全部模型导出任务，包括其目标格式、状态，以及完成时的产物路径。

返回通过 [创建模型导出](/api-reference/pin/models/export) 创建的每个导出任务。可用其轮询完成状态，或跨模型对账一组导出。

## 接口

```http theme={null}
GET /v1/exports
```

## 认证

`Authorization: Bearer <api_key or JWT>`。

## 查询参数

<ParamField query="model_id" type="string">
  筛选某个模型的导出。
</ParamField>

<ParamField query="status" type="string">
  按状态筛选：`pending`、`running`、`done` 或 `failed`。
</ParamField>

<ParamField query="format" type="string">
  按目标格式筛选：`gguf`、`mlx`、`mnn` 或 `qnn`。
</ParamField>

## 响应

<ResponseField name="code" type="integer">
  成功时为 `0`。
</ResponseField>

<ResponseField name="data" type="object">
  信封，包含 `items` 数组，每个导出记录带有 `id`、`model_id`、`format`、`status`、`artifact_path` 与时间戳。
</ResponseField>

## 示例

```bash theme={null}
curl "https://ariapin.example.com/v1/exports?status=done" \
  -H "Authorization: Bearer $ARIAPIN_API_KEY"
```

```json theme={null}
{
  "code": 0,
  "data": {
    "items": [
      {
        "id": "ex_0198c...",
        "model_id": "mdl_0198a...",
        "format": "gguf",
        "status": "done",
        "artifact_path": "/artifacts/exports/ex_0198c.zip",
        "created_at": "2025-09-01T12:00:00Z"
      }
    ]
  },
  "message": ""
}
```
