---
title: "Get asset details"
method: GET
path: "/api/assets/{id}"
tags: ["asset"]
---

# Get asset details

`GET /api/assets/{id}`

Retrieves detailed information about a specific asset

## Path parameters

- `id` string, uuid, required

## Response `200`

Asset details retrieved successfully

- Asset
  - `id` string, uuid, required — Unique identifier for the asset
  - `name` string, required — Name of the asset file
  - `asset_hash` string — Blake3 hash of the asset content
  - `size` integer, required — Size of the asset in bytes
  - `mime_type` string — MIME type of the asset
  - `tags` string[] — Tags associated with the asset
  - `user_metadata` object — Custom user metadata for the asset
  - `preview_url` string, uri — URL for asset preview/thumbnail
  - `preview_id` string, uuid, nullable — ID of the preview asset if available
  - `prompt_id` string, uuid, nullable — ID of the job/prompt that created this asset, if available
  - `created_at` string, date-time, required — Timestamp when the asset was created
  - `updated_at` string, date-time, required — Timestamp when the asset was last updated
  - `last_access_time` string, date-time — Timestamp when the asset was last accessed
  - `is_immutable` boolean — Whether this asset is immutable (cannot be modified or deleted)

## Other responses

- `401` — Unauthorized
- `404` — Asset not found
- `500` — Internal server error

---

[API](https://skmtc.net/ac/apis/comfy-api.md) · [All operations](https://skmtc.net/ac/apis/comfy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/ac/comfy-api/versions/c1893dffe250/schema)
