EventzR Documentation
Welcome to the EventzR Developer Platform. Explore our guides and API reference to build immersive event experiences.
Authentication
Learn how to generate keys and authenticate requests.
Event Lifecycle
Manage events from creation to post-event analytics.
Ticketing API
Issue, validate, and manage tickets programmatically.
Real-time Webhooks
Subscribe to event changes and trigger workflows.
Featured Endpoint
Retrieve a list of active events for your tenant.
GET/v1/events
Returns a paginated list of events. Supports filtering by status, date range, and venue.
Parameters
| Name | Type | Description |
|---|---|---|
| limit | integer | Number of items to return (default 20) |
| status | string | Filter by event status (published, draft) |
Response
{
"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
}
}