WebHooks payload

When using webhooks, your endpoint will receive a POST request containing a payload field in the JSON body. This payload will always be an array that holds transaction data, even if batch processing is disabled.

The transactions are represented in raw, unprocessed format, similar to what you would receive from an RPC node. For advanced parsing, we offer an internal parser capable of interpreting well-known Interface Definition Languages (IDLs). More details on the parsing feature are available in the Parsed Transaction section.

Example Payload:

{
  "payload": [
    { ...transaction },
    { ...transaction }
  ]
}

Last updated