Capture an event
Record an event to track user actions or system behavior.
Documentation Index
Fetch the complete documentation index at: https://docs.seerstack.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Use your SeerStack API key as a Bearer token. You can find your API key in the SeerStack Dashboard under Settings > Developer.
Body
The name of the event. We recommend using noun.verb syntax (e.g., invoice.paid, user.signup).
"invoice.paid"
The external user ID associated with this event. Use your database's primary key.
"user_123"
ISO 8601 timestamp for when the event occurred. Defaults to the current time if not provided.
"2025-01-04T12:00:00Z"
Additional data to include with the event. Can contain any JSON-serializable values.
{
"invoice_id": "inv_993",
"amount": 2000,
"currency": "usd"
}Response
Event captured successfully
Indicates whether the operation was successful.
true