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

# Get Artifact

> Get details of an artifact

# Get Artifact

Get details of an artifact you uploaded.

## Endpoint

```
GET /upload endpoint/artifacts/{artifact_id}
```

## Path Parameters

| Parameter     | Type   | Required | Description     |
| ------------- | ------ | -------- | --------------- |
| `artifact_id` | string | Yes      | The artifact ID |

## Request

```bash theme={null}
curl -X GET https://api.docyard.io/v1/upload/artifacts/art-abc123 \
  -H "X-API-Key: dk_live_dist_aaaaaaaa"
```

## Response

```json theme={null}
{
  "id": "art-abc123",
  "template_id": "tmpl-ins-dec-001",
  "template_name": "Insurance Declaration Page",
  "status": "active",
  "locks": {
    "policy_number": { "value": "POL-12345678", "weight": 20 },
    "effective_date": { "value": "2026-03-15", "weight": 10 },
    "mortgagee_name": { "value": "FirstCity Bank", "weight": 5 }
  },
  "threshold": 20,
  "created_at": "2026-03-15T10:30:00Z",
  "retrieval_count": 5,
  "last_retrieved_at": "2026-03-15T14:30:00Z"
}
```

***

## Related Endpoints

* [Revoke Artifact](/api-reference/artifacts/revoke)
* \[Upload Artifact]\(/api-reference/upload endpoints/upload)
