Skip to content
Free forever · No credit card

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.

44 developers75 endpoints created4,899 webhooks capturedOpen source

SDK

$ npm install @webhooks-cc/sdk

Also works with pnpm, yarn, and bun

CLI

$ curl -fsSL https://webhooks.cc/install.sh | sh

Also available via Homebrew

MCP

Connect your AI coding agent — Claude Code, Cursor, VS Code, Codex & more.

Setup guide →

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

1

Get a URL

Create an endpoint in one click. You get a unique public URL.

2

Point your service

Configure Stripe, GitHub, or any service to send webhooks to your URL.

3

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 Teams

Requires 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)
Popular

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

Questions

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.