142
8
3
| Service | Version | Type | Changes | Highlights |
|---|---|---|---|---|
| Events API | v2.1.0 | Minor | 12 | Recurring events, improved search filters |
| Bookings API | v2.0.0 | Major | 45 | New pricing engine, group bookings, crisis management |
| RSVP API | v1.2.0 | Minor | 8 | VIP tiers, approval workflows |
| Auth API | v2.5.2 | Patch | 3 | Passkey improvements, session management |
| Search API | v2.4.0 | Minor | 6 | Vector search, AI-powered suggestions |
| Invite API | v1.1.0 | Minor | 10 | WhatsApp templates, partner branding |
| Date | Service | Version | Type | Summary |
|---|---|---|---|---|
| 2026-03-03 | Bookings API | v2.0.0 | Major | Full rewrite with group bookings and pricing engine |
| 2026-03-02 | Events API | v2.1.0 | Minor | Added recurring events and improved search |
| 2026-03-01 | RSVP API | v1.2.0 | Minor | VIP tiers and approval workflows |
| 2026-02-28 | Auth API | v2.5.2 | Patch | Fixed passkey verification edge case |
| 2026-02-27 | Search API | v2.4.0 | Minor | Vector search integration |
| 2026-02-25 | Venue API | v1.8.1 | Patch | Fixed spatial search accuracy |
| 2026-02-20 | CRM API | v1.3.0 | Minor | Pipeline management, contact enrichment |
| 2026-02-15 | Wallet API | v2.0.0 | Major | Multi-currency, escrow, split payments |
| 2026-02-10 | Ticketing API | v1.3.0 | Minor | Dynamic pricing, blockchain NFT tickets |
| 2026-02-05 | Campaign API | v1.2.0 | Minor | A/B testing, WhatsApp campaigns |
Filter changelog by service using the API endpoint or RSS feed.
// Get changelog for a specific service
GET /status/v1/changelog?service=event-svc&limit=10
Authorization: Bearer <token>
// Response
{
"data": [
{
"version": "v2.1.0",
"releaseDate": "2026-03-02",
"type": "minor",
"changes": [
{ "type": "added", "description": "Recurring event support (RRULE)" },
{ "type": "added", "description": "Event search by date range" },
{ "type": "improved", "description": "Event listing performance (+40%)" },
{ "type": "fixed", "description": "Timezone handling for multi-day events" }
]
}
]
}Subscribe to the changelog RSS feed to stay updated on API changes.
<!-- All services -->
https://api.eventzr.com/status/v1/changelog/feed.xml
<!-- Specific service -->
https://api.eventzr.com/status/v1/changelog/feed.xml?service=event-svc
<!-- Breaking changes only -->
https://api.eventzr.com/status/v1/changelog/feed.xml?type=major| Method | Endpoint | Description | Auth |
|---|---|---|---|
GET | /status/v1/changelog | List all changelog entries with pagination | None |
GET | /status/v1/changelog/:service | Get changelog for a specific service | None |
GET | /status/v1/changelog/feed.xml | RSS feed for changelog updates | None |