Endpoints
This reference covers the most common API operations.
Events
Create Event
POST /v1/events{
"title": "Nairobi Product Leadership Forum",
"starts_at": "2026-07-20T09:00:00+03:00",
"ends_at": "2026-07-20T16:00:00+03:00",
"capacity": 300
}List Events
GET /v1/events?status=published&limit=20Registrations
Create Registration
POST /v1/events/{event_id}/registrations{
"first_name": "Amina",
"last_name": "Odhiambo",
"email": "amina@example.com",
"phone": "+254700000000"
}Get Registration
GET /v1/registrations/{registration_id}Waitlist
Promote Waitlist Entry
POST /v1/events/{event_id}/waitlist/{entry_id}/promoteReorder Waitlist Entry
PATCH /v1/events/{event_id}/waitlist/{entry_id}{
"priority_score": 88
}Health
GET /v1/healthReturns service and dependency health signals for monitoring integrations.