# Get asset Retrieves complete details for a single asset. Endpoint: GET /v1/assets/{assetUuid} Version: 1.0.0 Security: Bearer ## Path parameters: - `assetUuid` (string, required) Unique identifier of the asset. ## Query parameters: - `include[metadata]` (boolean) - `include[files]` (boolean) ## Response 200 fields (application/json): - `uuid` (string, required) Unique identifier for this asset. - `createdAt` (string, required) Timestamp when this asset was created. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt` (string, required) Timestamp when this asset was last modified. Example: "2025-11-23T14:15:22.123456Z" - `removedAt` (string,null) Timestamp when this asset was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `archivedAt` (string,null) Timestamp when this asset was archived. Null if not archived. Example: "2025-11-23T14:15:22.123456Z" - `status` (string, required) Current lifecycle status of this asset. Enum: "draft", "published", "unpublished", "archived", "removed" - `category` (string, required) Category classification for this asset. Enum: "image", "video", "audio", "document", "design", "archive", "data" - `storageLocation` (string, required) Storage backend where associated files reside. Enum: "s3" - `name` (string,null) Display name for this asset. - `description` (string,null) Optional detailed description for this asset. - `altText` (string,null) Alternative text for accessibility and SEO purposes. - `metadata` (array,null) Collection of custom metadata key-value pairs associated with this asset. - `metadata.uuid` (string, required) Unique identifier for this metadata entry. - `metadata.createdAt` (string, required) Timestamp when this metadata entry was created. Example: "2025-11-23T14:15:22.123456Z" - `metadata.updatedAt` (string, required) Timestamp when this metadata entry was last modified. Example: "2025-11-23T14:15:22.123456Z" - `metadata.key` (string, required) Metadata key name. - `metadata.value` (string, required) Metadata value content. - `files` (array,null) Collection of files associated with this asset. - `files.uuid` (string, required) Unique identifier for this file. - `files.createdAt` (string, required) Timestamp when this file was created. Example: "2025-11-23T14:15:22.123456Z" - `files.status` (string, required) Current lifecycle status of this file. Enum: "awaitingUpload", "uploaded" - `files.variationType` (string, required) Type of file variation. Enum: "original", "thumbnail", "webOptimized", "mobileOptimized", "productDetail", "printReady", "socialMedia", "videoPoster", "videoPreview", "videoStreamLow", "videoStreamMedium", "videoStreamHigh" - `files.storageLocation` (string, required) Storage backend where this file is stored. Enum: "s3" - `files.mimeType` (string, required) MIME type of this file. - `files.extension` (string, required) File extension of this file. - `files.storageKey` (string, required) Storage backend key path for this file. - `files.storageSize` (integer,null) File size in bytes. Null if not yet calculated. - `files.checksum` (string, required) SHA-256 checksum for file integrity verification. - `files.isAutogenerated` (boolean, required) Whether this file was automatically generated by the system. - `files.presignedUrl` (string, required) Temporary pre-signed URL for downloading this file. ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 404 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)