v52

latestOpenAPI 3.0.1AGPL-3.0raw.githubusercontent.com2026-08-01255473862.7 KB
Events

Ingest event

Use when sending a single usage event from your app (e.g. one API call or one GB stored). Events are processed asynchronously; returns 202 with event_id.

post/events

Request body

customer_idstring
event_idstring
event_namestring required
external_customer_idstring required
propertiesobject

Handled separately for dynamic columns

sourcestring
timestampstring

Handled separately due to parsing

Example request

{
  "customer_id": "customer456",
  "event_id": "event123",
  "event_name": "api_request",
  "external_customer_id": "customer456",
  "properties": {
    "\"response_status\"": "200}",
    "{\"request_size\"": "100"
  },
  "source": "api",
  "timestamp": "2024-03-20T15:04:05Z"
}

Response

message:Event accepted for processing

object required