Glossary
Webhook
A webhook is an HTTP callback - an automated message sent from one application to another when a specific event occurs. Unlike traditional APIs where the client polls for updates, webhooks push data to a specified URL in real-time when an event happens. For example, Stripe sends a webhook to your server when a payment succeeds. Webhooks are essential for building event-driven integrations and reducing unnecessary API polling.