Own participated events

GET/events/my-entries

Retrieve events the authenticated user has registered for, ordered by entry date descending.

AuthLogin required

Query parameters

pagenumber

Page number (1-based). Default 1

perPagenumber

Items per page. Default 20

timeFilter'upcoming' | 'past'

Filter by time

statestring

Entry states (comma-separated, default non-canceled)

keywordstring

Keyword (title / slug / tag names)

Response

FieldTypeDescription
eventsEvent[]Events (with entryState / checkedInAt / entryCount)
pageInfoobjectPagination info (totalCount / totalPages / page / perPage)
Request
curl https://api.4s.link/events/my-entries \
-H "Authorization: Bearer 4s_at_..."
Example response
{
"events": [
{
"id": "e1f2a3b4-...",
"title": "4S Tech Conference 2026",
"slug": "tech-conf-2026",
"schedules": [],
"tags": ["tech"],
"entryState": "CONFIRMED",
"checkedInAt": null,
"entryCount": 1,
"isPaid": false
}
],
"pageInfo": { "totalCount": 100, "totalPages": 5, "page": 1, "perPage": 20 }
}