Skip to main content

⚡ Event API

Create/Push Event

Creates a new event associated with your project in the system.

Endpoint

POST api/v1/event

Authentication

This endpoint requires API key authentication. Include your public key and project ID in the request body.

🙋‍♂️ Note:

Request Body

The request body should be in JSON format and include the following fields:

Field NameTypeRequiredDescriptionValidation
PublicKeystringYesYour API public key for authenticationMust be a valid key associated with a user account
ProjectIDstringYesUnique identifier for the projectMust be a valid UUID
EventTypestringYesType of the eventMaximum length: 100 characters
EventLabelstringNoLabel for the eventMaximum length: 100 characters
PageURLstringNoURL of the page where the event occurredMust be a valid URL
ElementPathstringNoPath to the element that triggered the eventMaximum length: 255 characters
ElementTypestringNoType of the element that triggered the eventMaximum length: 255 characters
UserAgentstringNoUser agent string of the browserMaximum length: 255 characters
BrowserNamestringNoName of the browserMaximum length: 100 characters
SessionIDstringNoUnique identifier for the user sessionMaximum length: 100 characters
DeviceTypestringNoType of device usedMaximum length: 100 characters
TimeOnPageintegerNoTime spent on the page in seconds
ScreenResolutionstringNoScreen resolution of the deviceMaximum length: 100 characters
FiredAtstringYesTimestamp when the event was firedMust be a valid timestamp

Example Request

{
"PublicKey": "your-public-key-here", // required
"ProjectID": "your-project-id-here", // required
"EventType": "click", // required
"EventLabel": "Product A Click",
"PageURL": "https://example.com/product/a",
"ElementPath": "button[#button-id]",
"ElementType": "button",
"UserAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
"BrowserName": "Microsoft Edge",
"SessionID": "sess_123456789",
"DeviceType": "Windows 10",
"TimeOnPage": 120,
"ScreenResolution": "1920x1080",
"FiredAt": "2023-06-15T14:30:00Z" // required
}

Response

Success Response

  • Code: 200 OK
  • Content: NO RETURNED CONTENT

Error Responses

  • Code: 400 Bad Request

    • Content: Raw error message (unprocessable entity)
    • Reason: Invalid request body format
  • Code: 401 Unauthorized

    • Content:
      {
      "error": "valid PublicKey is required"
      }
    • Reason: Missing or invalid PublicKey
  • Code: 404 Not Found

    • Content:
      {
      "error": "project not found"
      }
    • Reason: Invalid Project ID