Connect Twigest to Any Service
Power users and developers can push Twigest digest data to any destination. Build custom automations, feed your data warehouse, or trigger workflows in n8n, Make, or your own backend.
What you get
Connect to Any Endpoint
POST digest data to any URL — your own backend, n8n, Make (Integromat), Airtable, a data warehouse, or a custom application.
Structured JSON Payload
Every webhook delivers a clean JSON object with the digest summary, top tweets, keyword volumes, and metadata — ready to parse and store.
HMAC Signature Verification
Every request includes an HMAC-SHA256 signature so you can verify it genuinely came from Twigest — no spoofing possible.
Automatic Retry Logic
If your endpoint is temporarily unavailable, Twigest retries with exponential backoff — so no digest is ever silently lost.
Sample payload
Every webhook POST includes a structured JSON body. Here is an example of what your endpoint receives when a digest is created:
{
"event": "digest.created",
"digest_id": "dgst_abc123",
"account": "@yourhandle",
"keyword": "brand mention",
"generated_at": "2026-03-18T08:00:00Z",
"summary": "AI-generated summary...",
"tweet_count": 42,
"top_tweets": [ ... ],
"sentiment": "positive"
}Set up in 3 steps
Create a Webhook Endpoint
In your Twigest dashboard, go to Settings → Notifications → Webhooks. Enter your target URL and optional secret for HMAC verification.
Test the Connection
Use the built-in test button to send a sample payload to your endpoint. Verify the JSON structure and confirm your signature validation works.
Go Live
Enable the webhook and select which digest events trigger it. From now on, every new digest automatically POSTs to your endpoint.
Build your custom Twitter data pipeline
Webhooks are available on Pro and Business plans. Start free, upgrade when you need custom integrations.