See every webhook
as it arrives
Get a URL, send a webhook, see it arrive. Forward to localhost with the CLI, test in CI with the SDK, or let your AI agent handle it with MCP.
Live preview
# Send manually with curl
$ curl -X POST https://go.webhooks.cc/w/abc123 \
-H "Content-Type: application/json" \
-d '{"event": "payment.success", "amount": 4999}'
# Or send a signed provider template in TypeScript
await client.endpoints.sendTemplate(slug, {
provider: "stripe",
template: "checkout.session.completed",
secret: "whsec_test_123",
});
# Wait for it in your tests
const req = await client.requests.waitFor(slug, {
timeout: "30s",
match: matchHeader("stripe-signature"),
});How it works
Get a URL
Create an endpoint in one click. You get a unique public URL.
Point your service
Configure Stripe, GitHub, or any service to send webhooks to your URL.
See what arrives
Headers, body, query params — live. Forward to localhost or assert in tests.
Webhook tools that fit how you build
Use the dashboard, the CLI, the SDK, or your AI agent. Same webhooks, your workflow.
See requests the moment they arrive
Headers, body, query params — formatted, searchable, and exportable as JSON or CSV. Live updates, no refresh needed.
Test Stripe, GitHub, and Shopify webhooks
Send signed provider templates from the dashboard. Realistic payloads with correct signature headers — test your verification code end-to-end.
Return custom mock responses
Set status codes, headers, and body per endpoint. Changes take effect instantly — no deploy, no restart.
Forward to localhost. Assert in CI.
whk tunnel forwards webhooks to your local port. The TypeScript SDK waits for events and asserts payload shape in your test suite.
Let your AI agent debug webhooks
Connect Claude Code, Cursor, VS Code, or Codex via MCP. Your agent creates endpoints, sends tests, and inspects requests — through natural language.
Collaborate with your team Pro
Invite members, share endpoints, and debug webhooks together. Create teams with scoped roles and a shared endpoint view.
Pro feature
Built for teams
Create a team, invite your colleagues, and share endpoints. Everyone sees the same incoming webhooks in real time — no more pasting URLs in Slack.
Try TeamsRequires Pro plan
Straightforward pricing
Every feature on both tiers. Only Teams is Pro-exclusive.
Free
$0/forever
- 50 requests/day
- 7-day data retention
- Unlimited endpoints
- CLI, SDK & MCP access
- Mock responses & replay
- —Teams (Pro only)
Pro
$8/month
- 100,000 requests/month
- 30-day data retention
- Unlimited endpoints
- CLI, SDK & MCP access
- Mock responses & replay
- Teams — invite members, share endpoints
Start free, upgrade later
See how we compare
Honest, developer-focused comparisons against popular alternatives.
vs Webhook.site
SDK, MCP, and minimal feature gating vs established browser-based inspection.
Read comparisonvs ngrok
Webhook testing platform vs general-purpose tunnel.
Read comparisonvs RequestBin
Focused webhook testing vs Pipedream workflow automation.
Read comparisonvs Hookdeck
Development testing tool vs production webhook infrastructure.
Read comparisonvs Beeceptor
Webhook inspection + SDK + MCP vs API mocking-first workflows.
Read comparisonvs Smee.io
Full testing platform vs GitHub's lightweight webhook proxy.
Read comparisonQuestions
Common questions about webhooks.cc, answered.
Your next webhook is one URL away
Create an endpoint, point your service at it, and see what arrives.