Skip to main content
GET
/
v1
/
events
/
{eventId}
/
payload
Get a captured event's raw payload (base64 envelope)
curl --request GET \
  --url https://api.webhook.co/v1/events/{eventId}/payload \
  --header 'Authorization: Bearer <token>'
{
  "contentType": "<string>",
  "bytes": 4503599627370495,
  "bodyBase64": "<string>"
}

Authorizations

Authorization
string
header
required

A whk_-prefixed API key (opaque; not a JWT).

Path Parameters

eventId
string<uuid>
required
Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Success.

contentType
string | null
required
bytes
integer
required
Required range: 0 <= x <= 9007199254740991
bodyBase64
string
required