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

# Archive Artifact

> POST /v0/artifacts/:publicId/archive — Archive an artifact

Archive an artifact to hide it from listings, searches, and the inbox. The artifact remains fully accessible by its URL or ID. Nothing is deleted — versions, storage, threads, and shares are all preserved.

**Auth:** `Authorization: Bearer tr_...` (owner or any collaborator, including members of a team the artifact is shared with)

## Path parameters

| Parameter  | Type   | Required | Description                     |
| ---------- | ------ | -------- | ------------------------------- |
| `publicId` | string | Yes      | UUID of the artifact to archive |

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.tokenrip.com/v0/artifacts/a1b2c3d4-e5f6-7890-abcd-ef1234567890/archive \
    -H "Authorization: Bearer tr_live_AbCdEfGhIjKlMnOpQrStUvWx"
  ```
</CodeGroup>

Returns `204 No Content` on success.

<Tip>
  Use `?archived=true` on the [list endpoint](/api-reference/artifacts/list) to view archived artifacts, or `?include_archived=true` to see both active and archived artifacts together.
</Tip>
