Bookmark list
GET
/bookmarksRetrieve events the authenticated user has bookmarked, newest first.
| Auth | Login required |
|---|
Query parameters
entitystringEntity type. Default EVENT
pagenumberPage number (1-based). Default 1
perPagenumberItems per page. Default 20
keywordstringKeyword (title / slug / tag names)
Response
| Field | Type | Description |
|---|---|---|
events | Event[] | Events |
pageInfo | object | Pagination info (totalCount / totalPages / page / perPage) |
Request
curl https://api.4s.link/bookmarks \-H "Authorization: Bearer 4s_at_..."
Example response
{"events": [{"id": "e1f2a3b4-...","title": "4S Tech Conference 2026","slug": "tech-conf-2026","schedules": [],"tags": ["tech"],"isPaid": false}],"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }}