POST NewEvent

POST https://webhook.example.com

Headers

  • The ID of the webhook that sent the request.

  • The HMAC-SHA256 signature of the request body and the secret. This can be used to verify the sender and content of the request.

application/json

Body

New Event avaliable

  • type string

    Value is NewEvent.

  • time string(date-time)
  • eventTime string(date-time)

    Start time of the most recent event to be stored. Events are stored in batches so several new events may be available.

Responses

  • You must return a 200 OK status to indicate that the data was received successfully.

POST NewEvent
Request examples
# Headers
X-Webhook-Id: string
X-Webhook-Signature: string

# Payload
{
  "type": "NewEvent",
  "instrument": "string",
  "time": "2025-05-04T09:42:00Z",
  "eventTime": "2025-05-04T09:42:00Z"
}