curl --request GET \
--url https://api.example.com/api/albums{
"data": [
{
"id": "<string>",
"name": "<string>",
"asset_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"album_cover_asset_id": "<string>",
"album_cover_thumbnail_url": "<string>",
"asset_urls": {},
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z"
}
],
"has_more": true
}Retrieves a paginated list of albums from the specified library, ordered by creation time, descending. Can be filtered by asset_id or specific album IDs.
curl --request GET \
--url https://api.example.com/api/albums{
"data": [
{
"id": "<string>",
"name": "<string>",
"asset_count": 123,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"description": "<string>",
"album_cover_asset_id": "<string>",
"album_cover_thumbnail_url": "<string>",
"asset_urls": {},
"start_date": "2023-11-07T05:31:56Z",
"end_date": "2023-11-07T05:31:56Z"
}
],
"has_more": true
}Library to list albums from (optional)
Filter albums containing this asset ID (optional)
Filter by specific album IDs (max 100)
Max number of albums to return (1-200)
1 <= x <= 200Album ID to start listing albums after