List community announcements
GET
/communities/:communityId/announcementsList community announcements. Members only.
| Auth | Login required |
|---|
Path parameters
communityIdstringrequiredCommunity ID or slug.
Query parameters
pagenumberPage number (1-based). Default 1.
perPagenumberItems per page. Default 20.
Response
| Field | Type | Description |
|---|---|---|
announcements | Announcement[] | Array of announcements. |
pageInfo | object | Pagination info. |
Request
curl https://api.4s.link/communities/COMMUNITY_ID/announcements \-H "Authorization: Bearer 4s_at_..."
Example response
{"announcements": [{"id": "an1a2b3c-...","title": "次回イベントのお知らせ","content": "...","createdAt": "2026-08-18T00:00:00.000Z"}],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}