Playlist detail

GET/playlists/:playlistId

Retrieve a playlist's detail (items via a separate endpoint).

AuthNot required

Path parameters

playlistIdstringrequired

Playlist ID

Response

FieldTypeDescription
id / name / communityIdstringBasics
itemCountnumberItem count
communityobjectCommunity (if any)
Request
curl https://api.4s.link/playlists/PLAYLIST_ID \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"id": "pl1-...",
"communityId": "c1d2e3f4-...",
"name": "おすすめイベント",
"description": "...",
"thumbnailImageUrl": "https://.../thumb.png",
"sortOrder": 0,
"sticky": false,
"featured": false,
"itemCount": 5,
"community": { "id": "c1d2e3f4-...", "name": "4S Developers", "slug": "4s-devs" },
"createdAt": "2026-01-01T00:00:00.000Z",
"updatedAt": "2026-07-01T00:00:00.000Z"
}