My App
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)
  • cursor
  • from / to (ISO datetime)
  • category
  • action
  • projectId
  • workspaceId (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

  1. Call endpoint without cursor.
  2. Read nextCursor.
  3. Repeat with ?cursor=... until nextCursor is null.

Event Explorer in the dashboard

For interactive search, shareable filter URLs, saved views, and exports from the UI, use Event Explorer in app.hyrelog.com. The Explorer uses dashboard APIs (/dashboard/events), not your API key from the browser.

On this page