Drop in an SDK, track events, and see funnels and retention.
Copy-paste examples to get started quickly. Replace
your_api_key_here
with your actual API key.
curl -X POST https://ingest.mostlygoodmetrics.com/v1/events \
-H "Content-Type: application/json" \
-H "Authorization: Bearer your_api_key_here" \
-d '{
"events": [{
"name": "test_event",
"user_id": "user_123",
"properties": {
"button": "signup",
"screen": "home"
}
}]
}'
A successful request returns HTTP 204 (no content).
For SDK documentation (Swift, Kotlin, React Native, JavaScript, Flutter), sign up and view the full integration guides in your dashboard.
https://mostlygoodmetrics.com/v1/events
{
"events": [
{
"name": "button_clicked",
"user_id": "user_123",
"properties": {
"button": "signup",
"page": "/pricing"
}
}
]
}
events
name
user_id
properties
timestamp
Returns 204 No Content
on success.
Create a free account and start tracking events in minutes.