Welcome to the EventzR Developer Platform. Explore our guides and API reference to build immersive event experiences.
Learn how to generate keys and authenticate requests.
Manage events from creation to post-event analytics.
Issue, validate, and manage tickets programmatically.
Subscribe to event changes and trigger workflows.
Retrieve a list of active events for your tenant.
Returns a paginated list of events. Supports filtering by status, date range, and venue.
| Name | Type | Description |
|---|---|---|
| limit | integer | Number of items to return (default 20) |
| status | string | Filter by event status (published, draft) |
{
"data": [
{
"id": "evt_123",
"title": "Tech Conf 2026",
"status": "published",
"start_at": "2026-06-15T09:00:00Z"
},
{
"id": "evt_456",
"title": "Music Fest",
"status": "draft",
"start_at": "2026-07-20T18:00:00Z"
}
],
"meta": {
"total": 24,
"page": 1
}
}