Webhooks let you receive data from external applications — such as n8n, Zapier, Make.com, or your own backend — directly into a Databar table. Each incoming HTTP request creates a new row, making webhooks ideal for real-time data pipelines. Example: Push the email address of every newly registered user from your website into a Databar table, then automatically enrich each row with company data, job titles, and social profiles.Documentation Index
Fetch the complete documentation index at: https://docs.databar.ai/llms.txt
Use this file to discover all available pages before exploring further.

Instant setup
Clicking Webhooks from the workspace home instantly creates a new table with a webhook pre-configured and the setup panel already open. Your unique webhook URL is ready to copy — no extra steps required. You can also add a webhook to an existing table by clicking Import Data in the table toolbar and selecting Webhooks.Setting up a webhook
Create or open a webhook
Click Import Data in the table toolbar and select Webhooks, or use the instant-setup option from the workspace home.
Name your webhook
Give the webhook a descriptive name so you can identify it later (e.g., “New signups from marketing site”).
Copy the webhook URL
Your unique URL is displayed in the setup panel. Copy it — you will configure your external service to POST data to this URL.

Choose how to handle responses
Select one of two modes:
- Stream raw JSON
- Map webhook data
The full webhook payload is written into a single JSON column. You can unpack specific fields later using the JSON Expander.
Configure your external service
In your external tool (n8n, Zapier, Make.com, or your own code), set the destination URL to the webhook URL you copied. Make sure the request method is POST and the content type is application/json.
How webhooks work
- Each POST request to your webhook URL creates one new row in the linked table.
- The webhook accepts JSON payloads. Non-JSON requests are rejected.
- Webhook URLs are unique per table and persist until you delete the webhook.
- The number of webhooks you can create depends on your plan.
Webhooks are receive-only endpoints. To send data from Databar to external services, use Exporters.
Common integrations
| Service | How to connect |
|---|---|
| n8n | Add an HTTP Request node with your webhook URL as the destination. |
| Zapier | Use the “Webhooks by Zapier” action and paste your webhook URL. |
| Make.com | Add an HTTP module pointing to your webhook URL. |
| Custom backend | Send a POST request with a JSON body to your webhook URL from any language or framework. |
Next steps
Import data
Explore all methods for getting data into Databar.
JSON Expander
Unpack raw JSON webhook payloads into individual columns.
Tables overview
Learn how tables work and how webhooks fit in.
Enrichments
Automatically enrich rows as they arrive via webhook.
