> ## 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 PIN Model

> Fetch a single model by ID, including its artifact map for adapters, merged weights, GGUF, MLX, MNN, and QNN exports.

Use this endpoint to retrieve full details for one model, including the `artifact_paths` map that tells you which output formats are available for download.

## Endpoint

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

## Authentication

Send your token in the `Authorization: Bearer <jwt-or-api-key>` header.

## Path Parameters

<ParamField path="id" type="string" required>
  The unique model identifier.
</ParamField>

## Response

<ResponseField name="code" type="integer">
  Always 0 for success.
</ResponseField>

<ResponseField name="data" type="object">
  <ResponseField name="id" type="string">
    Model identifier.
  </ResponseField>

  <ResponseField name="name" type="string">
    Human-readable model name.
  </ResponseField>

  <ResponseField name="status" type="string">
    Current model status.
  </ResponseField>

  <ResponseField name="artifact_paths" type="object">
    Map of artifact names to download URLs or paths. Keys include: `adapter`, `merged`, `gguf`, `mlx`, `mnn`, `qnn`.
  </ResponseField>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -s https://ariapin.example.com/v1/models/mdl_01J8Q2R4TFK9Z0X \
    -H "Authorization: Bearer $ARIA_PIN_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "code": 0,
    "message": "",
    "data": {
      "id": "mdl_01J8Q2R4TFK9Z0X",
      "name": "Llama-3-8B-Instruct",
      "status": "ready",
      "artifact_paths": {
        "adapter": "/artifacts/mdl_01J8Q2R4TFK9Z0X/adapter.zip",
        "merged": "/artifacts/mdl_01J8Q2R4TFK9Z0X/merged.zip",
        "gguf": "/artifacts/mdl_01J8Q2R4TFK9Z0X/gguf.zip",
        "mlx": "/artifacts/mdl_01J8Q2R4TFK9Z0X/mlx.zip",
        "mnn": "/artifacts/mdl_01J8Q2R4TFK9Z0X/mnn.zip",
        "qnn": "/artifacts/mdl_01J8Q2R4TFK9Z0X/qnn.zip"
      }
    }
  }
  ```
</ResponseExample>


## Related topics

- [Get Model Export Job Status - PIN API](/api-reference/pin/exports/get.md)
- [List PIN Models](/api-reference/pin/models/list.md)
- [GET /v1/models: List router entrypoints and provider models](/api-reference/router/openai/list-models.md)
- [Download PIN Model Artifact](/api-reference/pin/models/download.md)
- [PIN Get Dataset by ID](/api-reference/pin/datasets/get.md)
