List sessions
GET
/events/:eventId/sessionsList the published sessions (timetable) of an event.
| Auth | Not required |
|---|
Path parameters
eventIdstringrequiredEvent ID or slug.
Response
| Field | Type | Description |
|---|---|---|
sessions | Session[] | Array of sessions (each includes stage and speakers) |
Request
curl https://api.4s.link/events/EVENT_ID/sessions \-H "Authorization: Bearer 4s_at_..."
Example response
{"sessions": [{"id": "s1a2b3c4-...","title": "Opening Keynote","description": "...","status": "COMPLETED","startTime": "2026-09-01T01:00:00.000Z","endTime": "2026-09-01T02:00:00.000Z","stage": { "id": "sg1a2b3c-...", "name": "Main Hall" },"speakers": [{ "id": "sp1a2b3-...", "firstName": "太郎", "lastName": "山田", "title": "Engineer", "avatarUrl": "https://.../avatar.png" }]}]}