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

# List All Model Export Jobs - PIN API

> List all model export jobs in the PIN control plane, including their target format, status, and artifact paths when complete.

Return every export job created via [Create Model Export](/api-reference/pin/models/export). Use this to poll for completion or to reconcile a set of exports across models.

## Endpoint

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

## Authentication

`Authorization: Bearer <api_key or JWT>`.

## Query parameters

<ParamField query="model_id" type="string">
  Filter to exports for one model.
</ParamField>

<ParamField query="status" type="string">
  Filter by status: `pending`, `running`, `done`, or `failed`.
</ParamField>

<ParamField query="format" type="string">
  Filter by target format: `gguf`, `mlx`, `mnn`, or `qnn`.
</ParamField>

## Response

<ResponseField name="code" type="integer">
  `0` on success.
</ResponseField>

<ResponseField name="data" type="object">
  Envelope containing an `items` array of export records with `id`, `model_id`, `format`, `status`, `artifact_path`, and timestamps.
</ResponseField>

## Example

```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": ""
}
```


## Related topics

- [List All Training Checkpoints - PIN API](/api-reference/pin/checkpoints/list.md)
- [Get Model Export Job Status - PIN API](/api-reference/pin/exports/get.md)
- [List PIN Models](/api-reference/pin/models/list.md)
- [Reload a model into a serving runtime](/api-reference/pin/models/reload.md)
- [Delete or cancel a training job](/api-reference/pin/jobs/delete.md)
