Simple API integration
Get started in minutes with developer‑friendly APIs.
from kivora_sdk import Client, Event
c = Client(api_key="YOUR_KEY")
events = [Event(
user_id="customer-123",
unit="meetings_booked",
quantity=1
)]
c.upload_events(events)