Follow these steps to set up webhook tunneling for your development environment. Get persistent URLs, offline queueing, and real-time forwarding in minutes.
First, create your account and generate an API key to authenticate with the CLI.
Once logged in, go to Dashboard → API Keys to create your key.
Install the CLI package using bun package manager.
bun install -g @hooktunnel/tsuuAuthenticate the CLI with your API key.
tsuu loginWhen prompted, enter your API key from step 1.
Get help with all available CLI commands and their options.
tsuu helpCreate a new webhook endpoint in your dashboard to receive webhooks.
Create EndpointThis will give you a unique URL to use as your webhook endpoint.
Copy your endpoint URL and use it in your webhook configuration (Stripe, GitHub, etc.).
Your endpoint URL will look like: https://api.hooktunnel.dev/api/r/your-user-id/your-endpoint-slug
Start the tunnel to forward webhooks to your local development server.
tsuu connect -p 3000Replace 3000 with your local server port. Use tsuu help to see all available options.