> ## Documentation Index
> Fetch the complete documentation index at: https://supahooks.ar27111994.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhook Debugger & Logger: real-time webhook testing

> Capture, inspect, replay, and mock webhook traffic without tunneling localhost. Test Stripe, GitHub, Shopify, Slack, and custom webhooks fast.

Webhook Debugger & Logger gives you temporary, public webhook endpoints that capture every incoming request in full — headers, body, query params, response, timing, and IP — and exposes a searchable API, a live event stream, and one-click replay. Run it on the Apify platform or self-host with Node.js or Docker.

<CardGroup cols={2}>
  <Card title="Quick Start" icon="rocket" href="/quickstart">
    Get a webhook URL and capture your first event in under five minutes.
  </Card>

  <Card title="Deploy" icon="server" href="/deployment">
    Run on Apify, self-host with Node.js, or spin up a Docker container.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Full HTTP API reference for all capture, query, replay, and streaming endpoints.
  </Card>

  <Card title="Provider Guides" icon="plug" href="/guides/stripe">
    Step-by-step guides for Stripe, GitHub, Shopify, Slack, and low-code tools.
  </Card>
</CardGroup>

## What you can do

<CardGroup cols={2}>
  <Card title="Capture requests" icon="inbox" href="/features/capture">
    Inspect every header, payload, status code, and timestamp for any HTTP method.
  </Card>

  <Card title="Live stream events" icon="signal-stream" href="/features/live-stream">
    Watch incoming webhooks appear in real time over a Server-Sent Events feed.
  </Card>

  <Card title="Replay captured traffic" icon="rotate" href="/features/replay">
    Resend any stored event to a new destination URL after fixing a bug.
  </Card>

  <Card title="Forward to another server" icon="forward" href="/features/forwarding">
    Pipe every captured request to a downstream service with retries and circuit breaking.
  </Card>

  <Card title="Mock API responses" icon="masks-theater" href="/features/mocking">
    Return custom status codes, headers, bodies, and artificial latency.
  </Card>

  <Card title="Verify signatures" icon="shield-check" href="/security/signature-verification">
    Validate Stripe, GitHub, Shopify, Slack, and custom HMAC signatures automatically.
  </Card>
</CardGroup>

## Get started in three steps

<Steps>
  <Step title="Start the actor">
    Launch on Apify or run locally with `npm start`. A set of temporary webhook URLs is generated immediately.
  </Step>

  <Step title="Point your provider at the URL">
    Copy a generated endpoint from `/info` and paste it into your webhook provider's configuration.
  </Step>

  <Step title="Inspect and replay">
    View captured events at `/logs`, stream them live at `/log-stream`, and replay any event to a new target.
  </Step>
</Steps>

<Note>
  Generated webhook URLs are public by default. Set `authKey`, `allowedIps`, or `signatureVerification` to restrict access before pointing real provider traffic at your endpoints.
</Note>
