---
title: "Get an album-asset link record"
method: GET
path: "/api/album-assets/{album_asset_id}"
tags: ["album-assets"]
---

# Get an album-asset link record

`GET /api/album-assets/{album_asset_id}`

Fetches one album-asset link record by ID (the junction row between an album and an asset). Rarely needed directly; most callers want `get_asset` or `get_album` instead.

## Path parameters

- `album_asset_id` string, required — Album-asset junction row ID (with `album_asset_` prefix). Carried by the `id` field on an album-asset link record. Not the same as `asset_id` or `album_id`.

## Response `200`

Successful Response

- AlbumAssetResponse — Represents a link between an album and an asset.
  - `id` string, required — Unique album_asset identifier with 'album_asset_' prefix
  - `album_id` string, required — ID of the album
  - `asset_id` string, required — ID of the asset
  - `created_at` string, date-time, required — When this link was created
  - `updated_at` string, date-time, required — When this link was last updated

## Other responses

- `401` — Missing, invalid, or expired credentials.
- `403` — The credentials are valid but not authorized for this operation — for example an API key whose action or library scope excludes it, or a credential type this operation does not accept.
- `404` — Not found
- `422` — Validation Error
- `429` — Rate limit exceeded. Retry after the interval in the `Retry-After` header.

---

[API](https://skmtc.net/gumnut-ai/apis/gumnut-api.md) · [All operations](https://skmtc.net/gumnut-ai/apis/gumnut-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/gumnut-ai/gumnut-api/revisions/e71db45f5d4a/schema)
