プレイリスト一覧
GET
/playlists公開プレイリストを検索・一覧取得します。
| 認証 | 不要 |
|---|
クエリパラメータ
pagenumberページ番号(1 始まり)。デフォルト 1
perPagenumber1 ページあたりの件数。デフォルト 20
qstringキーワード(name / description、AND)
sort'created' | 'updated'並び順。デフォルト created
featured'true'注目のみ
レスポンス
| フィールド | 型 | 説明 |
|---|---|---|
playlists | Playlist[] | プレイリスト配列(itemCount / community 付き) |
pageInfo | object | ページ情報(totalCount / totalPages / page / perPage) |
リクエスト
curl https://api.4s.link/playlists \-H "Authorization: Bearer 4s_at_..."
レスポンス例
{"playlists": [{"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"}],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}