Guides
Query And Filter Events
Use filters and cursor pagination to retrieve exactly the events you need.
Query Parameters
GET /v1/events supports:
limit(1-200)cursorfrom/to(ISO datetime)categoryactionprojectIdworkspaceId(company keys)
Example
curl "https://api.hyrelog.com/v1/events?limit=50&category=auth&action=user.login" \
-H "Authorization: Bearer YOUR_API_KEY"Pagination Pattern
- Call endpoint without
cursor. - Read
nextCursor. - Repeat with
?cursor=...untilnextCursorisnull.