Bolt api

Webhook Not Receiving Requests - Events Not Triggered

You've registered a webhook URL but never receive requests from the service (Stripe, GitHub, etc.). The webhook endpoint is never called.

The service shows 'failed delivery' or 'pending' status.

Error Messages You Might See

Webhook delivery failed - timeout Webhook returned 401 Unauthorized Endpoint not reachable Connection refused to webhook URL
Webhook delivery failed - timeoutWebhook returned 401 UnauthorizedEndpoint not reachableConnection refused to webhook URL

Common Causes

  1. Webhook URL not publicly accessible or behind authentication
  2. Webhook endpoint returns error status code (not 200-299)
  3. URL has typo or wrong path
  4. Service can't reach your domain (firewall, development environment)
  5. Webhook signature validation failing, returning 401

How to Fix It

Test webhook URL is publicly accessible: curl https://your-domain.com/api/webhooks/stripe

Endpoint must return 200 status immediately: return NextResponse.json({ ok: true })

Disable signature verification temporarily to test if webhook reaches endpoint

Check webhook delivery logs in service dashboard (Stripe has 'Event' logs)

Ensure endpoint doesn't require authentication (no auth cookie checks)

Real developers can help you.

prajwalfullstack prajwalfullstack Hi Im a full stack developer, a vibe coded MVP to Market ready product, I'm here to help BurnHavoc BurnHavoc Been around fixing other peoples code for 20 years. hanson1014 hanson1014 Full-stack developer experienced in fixing and deploying AI-generated apps from Lovable, Bolt.new, Cursor, and Replit. I specialize in debugging Supabase integration issues (auth flows, RLS policies, database connections), fixing broken deployments, resolving routing/blank screen problems, and cleaning up messy React/Vite codebases. I also build production apps with the Claude API and have shipped a Mac desktop dev tool (Nexterm from scratch. Based in Hong Kong, fast turnaround. ISHANTDEEP SINGH ISHANTDEEP SINGH Senior Software Engineer with 7+ years of experience in React, JavaScript, TypeScript, Next.js, and Node.js. I’ve also worked as a tech lead for startups, owning end-to-end technical execution including architecture, development, scaling, and delivery. I bring a strong mix of hands-on coding, product thinking, and technical leadership, and I’m comfortable building products from scratch as well as improving and scaling existing systems. Krishna Sai Kuncha Krishna Sai Kuncha Experienced Professional Full stack Developer with 8+ years of experience across react, python, js, ts, golang and react-native. Developed inhouse websearch tooling for AI before websearch was solved : ) Taufan Taufan I’m a product-focused engineer and tech leader who builds scalable systems and turns ideas into production-ready platforms. Over the past years, I’ve worked across startups and fast-moving teams, leading backend architecture, improving system reliability, and shipping products used by thousands of users. My strength is not just writing code — but connecting product vision, technical execution, and business impact. Bastien Labelle Bastien Labelle Full stack dev w/ 20+ years of experience Simon A. Simon A. I'm a backend developer building APIs, emulators, and interactive game systems. Professionally, I've developed Java/Spring reporting solutions, managed relational and NoSQL databases, and implemented CI/CD workflows. Stanislav Prigodich Stanislav Prigodich 15+ years building iOS and web apps at startups and enterprise companies. I want to use that experience to help builders ship real products - when something breaks, I'm here to fix it. Yovel Cohen Yovel Cohen I got a lot of experience in building Long-horizon AI Agents in production, Backend apps that scale to millions of users and frontend knowledge as well.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help

Frequently Asked Questions

How do I test webhooks locally?

Use ngrok: ngrok http 3000, then use ngrok URL for webhook. Or use Stripe CLI for Stripe webhooks

Why would webhook reach endpoint but validation fail?

Signature verification failing. Check secret key matches, verify timestamp isn't expired (usually 5min tolerance)

Should I process webhook synchronously?

No! Return 200 immediately, process async. Webhook services timeout after ~30s

Related Bolt Issues

Can't fix it yourself?
Real developers can help.

You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.

Get Help