> ## 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.

# Introduction

> Hookdrop captures every webhook, inspects the payload, forwards to any environment, and replays on demand.

## What is Hookdrop?

Webhooks are fire-and-forget. When Stripe, GitHub, or Paystack fires an event, it doesn't wait for your server to be ready. If you're deploying, restarting, or just running slow — that event is gone, and you'll never know it arrived.

Hookdrop sits between your webhook provider and your server. It captures every inbound event instantly, stores the full payload, and forwards it to wherever you need — with automatic retries if your server is unavailable. When something goes wrong, you can inspect exactly what arrived and replay it with one click.

## Key features

* **Permanent capture URL** — One URL that never changes or goes down. Every webhook is logged in full: headers, body, timestamp, and source IP.
* **Auto-retry forwarding** — Forward to localhost, staging, or production simultaneously. Automatic retries with exponential backoff.
* **One-click replay** — Replay any past event against any environment instantly. No more asking Stripe to resend.
* **Live event stream** — Watch webhooks arrive in real time on your dashboard via WebSocket. No refreshing needed.
* **AI-powered inspection** — AI explains every payload in plain English, generates TypeScript types, and writes handler code for you.
* **Secure by default** — HMAC signature verification, JWT auth, and tenant-isolated event storage built in from day one.

## Pricing

All plans include live event streaming and one-click replay. AI features are available on Starter and above. No credit card required to start.

| Plan    | Price      | Events  | Retention | Endpoints |
| ------- | ---------- | ------- | --------- | --------- |
| Free    | ₦0/mo      | 500     | 24 hours  | 2         |
| Starter | ₦7,500/mo  | 10,000  | 7 days    | 5         |
| Pro     | ₦19,000/mo | 100,000 | 30 days   | Unlimited |
| Team    | ₦49,000/mo | 500,000 | 90 days   | Unlimited |

<Note>
  Events over your plan limit are dropped, not queued. Upgrade before you hit your ceiling if you expect a spike.
</Note>

## Where to go next

<CardGroup cols={2}>
  <Card title="Quick Start" icon="bolt" href="/quickstart">
    Capture your first webhook in under 5 minutes.
  </Card>

  <Card title="How It Works" icon="sitemap" href="/how-it-works">
    The capture, store, forward, and retry lifecycle.
  </Card>

  <Card title="Authentication" icon="lock" href="/api-reference/authentication">
    Secure your endpoints and verify signatures.
  </Card>

  <Card title="Stripe Integration" icon="credit-card" href="/integrations/stripe">
    Connect Stripe webhooks to Hookdrop.
  </Card>
</CardGroup>
