Sumidatasumidata.io
Sign in
Docs/Getting started/Verify ingest
Getting started · 3 min

Verify ingest

Two ways to confirm events are flowing — the Dashboard's live event stream and a one-shot health check via the Partner API.

01Check via the Dashboard

Open the Live Events view and fire a test event from your app.

1

Open Live Events

Navigate to Dashboard → Events. The feed updates in real time as events hit your project.

2

Trigger an event

Open your app in a new tab, navigate any page, or click any instrumented button.

3

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
curl "https://api.sumidata.io/v1/health" \
  -H "Authorization: Bearer sumi_live_…"

Successful response (abbreviated):

response.json
{
  "status": "healthy",
  "lastEventAt": "2026-04-20T09:12:44Z",
  "eventsLastHour": 142
}
!
Status values: 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.