Bookmark list

GET/bookmarks

Retrieve events the authenticated user has bookmarked, newest first.

AuthLogin required

Query parameters

entitystring

Entity type. Default EVENT

pagenumber

Page number (1-based). Default 1

perPagenumber

Items per page. Default 20

keywordstring

Keyword (title / slug / tag names)

Response

FieldTypeDescription
eventsEvent[]Events
pageInfoobjectPagination 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 }
}