API Reference
Track a single event
Accepts a single event object and records it for ingestion.
If messageId is not provided, the server will generate one automatically.
POST
Track a single event
Authorizations
Include your API key as:
Authorization: Bearer YOUR_API_KEY
Body
application/json
The name/type of the event.
Example:
"signup"
When the event occurred.
Example:
"2025-10-29T22:00:00.778Z"
Event-specific key/value pairs.
Example:
{
"plan": "basic",
"accountType": "email",
"freeTrial": true
}
Unique identifier for this event. If not provided by the client, the server will generate one automatically. Used for deduplication and traceability through downstream systems.
Example:
"8b0f62f9-1e8e-4f15-8c2a-9d23c9c6c0e2"
Previous
Track multiple events in bulkAccepts an array of event objects and records them in bulk.
Clients may optionally gzip the request body.
The total uncompressed request size must not exceed 10 MB.
Next
Track a single event