What Are Webhooks?
Webhooks let you receive real-time data from external services. Instead of polling for updates, services push data to your agntdata webhook endpoint, which stores it for later retrieval.Use Cases
CRM Notifications
Receive notifications when leads are updated in your CRM.
E-commerce Events
Get notified about orders, refunds, and inventory changes.
CI/CD Pipelines
Receive build and deployment notifications.
Social Monitoring
Get alerts when tracked accounts post new content.
How It Works
Create an Endpoint
Create a webhook endpoint in the agntdata dashboard. Each endpoint gets a unique URL.
Configure External Service
Point your external service’s webhook settings to your agntdata endpoint URL.
Endpoint URL Format
Each webhook endpoint has a unique URL:hookId is the endpoint’s unique identifier returned when you create
the endpoint.
Why Use agntdata Webhooks?
No Server Required
No Server Required
You don’t need to run a server to receive webhooks. agntdata stores deliveries until you’re ready to process them.
Reliable Storage
Reliable Storage
Deliveries are stored reliably and won’t be lost if your application is temporarily down.
Unified Inbox
Unified Inbox
Collect webhooks from multiple services in one place. View and manage them from the dashboard.
Replay and Debug
Replay and Debug
View the raw payload of any delivery. Useful for debugging integration issues.
Dashboard Features
The webhook dashboard provides:- Endpoint Management — Create, view, and delete endpoints
- Delivery History — View all received webhook payloads
- Payload Inspection — Examine headers and body of each delivery
- Acknowledgment — Mark deliveries as processed
Limits
| Limit | Value |
|---|---|
| Payload size | 1 MB |
| Deliveries per page | 100 max |
Endpoint names must be 3-50 characters, lowercase alphanumeric with hyphens, and start/end with alphanumeric characters.
Next Steps
Create Endpoints
Learn how to create and manage webhook endpoints.
Receive Webhooks
Understand webhook payload format and handling.
Managing Deliveries
Fetch, paginate, and acknowledge deliveries via the API.