> ## Documentation Index
> Fetch the complete documentation index at: https://bobprince-78964c2b.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Capture your first webhook in under 5 minutes.

<Steps>
  <Step title="Create an account">
    Go to [hookdrop.dev/auth/register](https://hookdrop.dev/auth/register) and sign up for free. No credit card required.
  </Step>

  <Step title="Create an endpoint">
    From your dashboard, click **+ New endpoint** and give it a name — for example, `Stripe payments`.

    You'll get a unique capture URL:

    ```
    https://hookdrop.dev/in/{token}
    ```

    This URL never changes and never goes down. Copy it — you'll use it in the next step.
  </Step>

  <Step title="Point your webhook provider at the URL">
    Paste your Hookdrop capture URL wherever your provider asks for a webhook destination.

    <Tabs>
      <Tab title="Stripe">
        1. Go to **Stripe Dashboard → Developers → Webhooks**
        2. Click **Add endpoint**
        3. Paste your Hookdrop URL into the **Endpoint URL** field
        4. Select the events you want to capture (e.g. `payment_intent.succeeded`)
        5. Click **Add endpoint**
      </Tab>

      <Tab title="GitHub">
        1. Go to your repository **Settings → Webhooks**
        2. Click **Add webhook**
        3. Paste your Hookdrop URL into the **Payload URL** field
        4. Set **Content type** to `application/json`
        5. Choose which events to send and click **Add webhook**
      </Tab>

      <Tab title="Paystack">
        1. Go to **Paystack Dashboard → Settings → API Keys & Webhooks**
        2. Paste your Hookdrop URL into the **Webhook URL** field
        3. Click **Save changes**
      </Tab>
    </Tabs>
  </Step>

  <Step title="Watch events arrive in real time">
    Open your Hookdrop dashboard and click **View events** on your endpoint.

    The moment your provider fires a webhook, it appears on your dashboard in real time — with the full payload, all headers, source IP, and delivery status. No refreshing needed.

    <Tip>
      Trigger a test event from your provider's dashboard to verify the connection. Stripe, GitHub, and most others have a **Send test webhook** button.
    </Tip>
  </Step>

  <Step title="Replay any event">
    Click any event in the list, then hit **↺ Replay** to re-deliver it to any destination instantly.

    This works for any event, at any time — as long as it's within your plan's retention window. No more asking your provider to resend.
  </Step>
</Steps>

<Card title="Next: Endpoints" icon="arrow-right" href="/concepts/endpoints">
  Learn how endpoints work and how to forward events to your local server, staging, or production.
</Card>
