Playlist list

GET/playlists

Search and list public playlists.

AuthNot required

Query parameters

pagenumber

Page number (1-based). Default 1

perPagenumber

Items per page. Default 20

qstring

Keyword (name / description, AND)

sort'created' | 'updated'

Sort. Default created

featured'true'

Featured only

Response

FieldTypeDescription
playlistsPlaylist[]Playlists (with itemCount / community)
pageInfoobjectPagination info (totalCount / totalPages / page / perPage)
Request
curl https://api.4s.link/playlists \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"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 }
}