List community events
GET
/communities/:id/eventsList events organized by the community.
| Auth | Not required |
|---|
Path parameters
idstringrequiredCommunity ID or slug.
Query parameters
pagenumberPage number (1-based). Default 1.
perPagenumberItems per page. Default 20.
Response
| Field | Type | Description |
|---|---|---|
events | Event[] | Array of events. |
pageInfo | object | Pagination info. |
Request
curl https://api.4s.link/communities/ID/events \-H "Authorization: Bearer 4s_at_..."
Example response
{"events": [{ "id": "e1f2a3b4-...", "slug": "tech-conf-2026", "title": "4S Tech Conference 2026", "state": "PUBLISHED" }],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}