プレイリスト詳細

GET/playlists/:playlistId

指定プレイリストの詳細を取得します(アイテムは別エンドポイント)。

認証不要

パスパラメータ

playlistIdstring必須

プレイリスト ID

レスポンス

フィールド説明
id / name / communityIdstring基本情報
itemCountnumberアイテム数
communityobject所属コミュニティ(存在時)
リクエスト
curl https://api.4s.link/playlists/PLAYLIST_ID \
-H "Authorization: Bearer 4s_at_..."
レスポンス例
{
"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"
}