Verify ingest
Just signed up? The onboarding screen verifies your install live — it flips to "We received data from your site" on the first event. If it didn't, or you want to re-check later, two ways to confirm events are flowing — the Dashboard's live event stream and a one-shot health check via the Partner API. Haven't added the snippet to your site yet? Start with the install guide, then come back here.
01Check via the Dashboard
Open the Live Events view and fire a test event from your app.
Open Live Events
Navigate to Dashboard → Events. The feed updates in real time as events hit your project.
Trigger an event
Open your app in a new tab, navigate any page, or click any instrumented button.
Confirm the event appears
You should see it within 5 seconds. If not, check the browser console for SDK errors and verify data-project-id matches your project.
02Check via Partner API
For CI/CD or automated monitoring, poll the health endpoint instead.
Mint a Partner API token (see Partner API) and call:
curl "https://api.sumidata.io/v1/health" \
-H "Authorization: Bearer sumi_live_…"Successful response (abbreviated):
{
"status": "healthy",
"lastEventAt": "2026-04-20T09:12:44Z",
"eventsLastHour": 142
}healthy = event in last 5 min · warning = event in last 60 min · error = no events in 60+ min.03What's next
You're now fully instrumented.
With events flowing, explore the guides: configure the SDK, track product events, set up conversions, or ask the AI Analyst a question.
