Skip to main content
GET
/
api
/
album-assets
List album assets
curl --request GET \
  --url https://api.example.com/api/album-assets
{
  "data": [
    {
      "id": "<string>",
      "album_id": "<string>",
      "asset_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true
}

Query Parameters

album_id
string | null

Filter by album ID

asset_id
string | null

Filter by asset ID

ids
string[] | null

Filter by specific album-asset IDs (max 100)

limit
integer
default:100

Max number of results to return

Required range: 1 <= x <= 1000
starting_after_id
string | null

Album-asset ID to start listing after

library_id
string | null

Library ID (required if user has multiple libraries)

Response

Successful Response

data
AlbumAssetResponse · object[]
required
has_more
boolean
required