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

# Get Model Export Job Status - PIN API

> Fetch the current status and artifact paths of a PIN model export job by its export identifier for gguf, mlx, mnn, or qnn.

Fetch the current state of an export job, including its format, progress, and (when finished) artifact paths. The export id is returned by [Create Model Export](/api-reference/pin/models/export).

## Endpoint

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

## Authentication

`Authorization: Bearer <api_key or JWT>`.

## Path parameters

<ParamField path="id" type="string" required>
  Export job identifier.
</ParamField>

## Response

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

<ResponseField name="data" type="object">
  Export record with fields such as `id`, `model_id`, `format` (`gguf` | `mlx` | `mnn` | `qnn`), `status` (`pending` | `running` | `done` | `failed`), `progress`, `artifact_path`, `error`, and timestamps.
</ResponseField>

## Example

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

```json theme={null}
{
  "code": 0,
  "data": {
    "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 Model Export Jobs - PIN API](/api-reference/pin/exports/list.md)
- [Get PIN Model](/api-reference/pin/models/get.md)
- [Export a trained model to GGUF, MLX, MNN, or QNN](/api-reference/pin/models/export.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)
