List community events

GET/communities/:id/events

List events organized by the community.

AuthNot required

Path parameters

idstringrequired

Community ID or slug.

Query parameters

pagenumber

Page number (1-based). Default 1.

perPagenumber

Items per page. Default 20.

Response

FieldTypeDescription
eventsEvent[]Array of events.
pageInfoobjectPagination 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 }
}