Webhook Request Example

Need a generic webhook endpoint example? This page shows a practical request format for testing custom providers and integration handlers.

It is useful for onboarding docs, API tutorials, and quickly validating request shape before wiring provider specific signatures.

Endpoint URL

https://hook-abc123.fasthook.io/

Sample request (curl)

curl -X POST "https://hook-abc123.fasthook.io/" \
  -H "Content-Type: application/json" \
  -H "X-Event-Type: test.run" \
  -d '{"id":"evt_test_42","type":"test.run","data":{"ok":true}}'

Sample headers

{
  "content-type": "application/json",
  "x-event-type": "test.run",
  "x-request-id": "req_4f9d"
}

Sample payload

{
  "id": "evt_test_42",
  "type": "test.run",
  "timestamp": "2026-04-21T09:00:00Z",
  "data": {
    "ok": true,
    "source": "custom-provider"
  }
}

When to use this

  • Smoke-test webhook receivers in staging.
  • Share copyable examples in README and docs.
  • Debug payload mapping before production rollout.

Open full public hook page: /hooks/hook-abc123