For each event delivery, Bridge will include a webhook signature header in the HTTP request for event authenticity verificationDocumentation Index
Fetch the complete documentation index at: https://apidocs.bridge.xyz/llms.txt
Use this file to discover all available pages before exploring further.
- The header name is
X-Webhook-Signature; - The header value format is
t=<timestamp>,v0=<base64 encoded signature>, where the timestamp is in milliseconds;
- Parse the signature header to extract the
timestampandbase64 encoded signature - Join
timestampwith theraw http request body datawith a dot (.), and generate aSHA256digest; - Perform a strict base64 decoding on the
based64 encoded signatureto get thedecoded signature; - Verify the signature using the per-endpoint
public key,digest(from Step 2), anddecoded signature(from Step 3
