Skip to content

Requests

Every webhook sent to your endpoint is captured and displayed in real time. Inspect headers, body, query parameters, method, and IP address for each incoming request.

Updated Mar 2026

Request list

The left panel shows captured requests sorted by time. Each entry displays the HTTP method, a short ID, and relative timestamp.

  • Live mode — new requests are auto-selected as they arrive
  • Paused mode — review at your pace; a banner shows how many new requests arrived
  • Sort — toggle between newest-first and oldest-first
  • Filter — filter by HTTP method or search by path, body, or request ID

Request detail

Click a request to view its details. Five tabs organize the data:

  • Body — auto-formatted based on content type (JSON, XML, form data, plain text)
  • Headers — all request headers in a key-value table
  • Query — parsed query string parameters
  • Raw — unformatted request body
  • Signature — verify the request's webhook signature (client-side or server-side)

A format badge (JSON, XML, FORM, TEXT) appears above the body for quick identification.

Signature verification

When signature verification is configured on an endpoint, each request includes a verification status:

  • signatureVerified: true — the signature is valid (shield icon in the request list)
  • signatureVerified: false — the signature is invalid, with details in signatureError
  • signatureVerified: null — verification is not configured for this endpoint

See Dashboard Features for the full guide.

Copy as curl

Click the cURL button to copy a curl command that reproduces the captured request. Headers, method, body, and query parameters are preserved. Use this to replay the request from your terminal.

Replay

Click Replay to send the captured request to a different URL. Enter a destination URL (http or https), and the request is sent with the original method, headers, and body. Useful for testing your local or staging server.

Export

Use the Export dropdown in the URL bar to download requests as JSON or CSV. Exports include the currently visible (filtered) requests.