Send Facebook Group Posts to n8n
With the Groups Watcher Pro plan, you can send every new post from your monitored Facebook groups and pages to n8n. Add a Webhook node as your trigger, copy the webhook URL, add it in Groups Watcher, and we deliver post details you can automate to Slack, Discord, email, SMS, Google Sheets, or any node in n8n. Most alerts arrive in under 60 seconds.
This feature is available on the Pro plan. Check pricing here.
Set up n8n
- In n8n, create a new workflow. Add a Webhook node as the first (trigger) node.
- Set the webhook to accept POST requests. n8n will show a unique URL (test or production).
- Copy that URL and paste it into Groups Watcher as your webhook URL (in your campaign or Pro plan setup).
- When you are ready to test, trigger a post from Groups Watcher (or use the test tool below); n8n will receive the data and you can map
body.messageandbody.datain the next nodes.
The information we send matches our custom webhook doc: one alert per request with message and data (group name, post URL, body, images, videos, and more).
Test your n8n webhook
Before or after configuring your workflow, send a test to your n8n webhook URL. Open Send test webhook, enter the URL, and we send a sample POST so you can verify the workflow runs.
Request
- Method:
POST - Headers:
Content-Type: application/json - Body: JSON with
messageand adataobject (one post per request). Full reference: Custom webhook.
Payload (n8n webhook data)
For the default format, the body has a short message and a data object with all post fields. In n8n you can map data.group_name, data.post_url, data.body, and so on in downstream nodes.
Each POST includes a short message and a data object with all post fields. See the full write-up on Custom webhook.
Payload shape
{
"message": "<string>",
"data": {
"group_name": "<string>",
"group_id": "<string>",
"poster_name": "<string>",
"poster_url": "<string>",
"post_url": "<string>",
"group_url": "<string>",
"post_id": "<string>",
"post_type": "regular_post" | "marketplace",
"body": "<string>",
"images": ["<url>", ...],
"videos": ["<url>", ...],
"timestamp": "<ISO 8601 string>"
}
}Slack, Discord, ntfy, and Teams use different formats. The example above applies when your automation receives a webhook URL from Groups Watcher (including via Zapier, Make, or n8n).
Field reference
| Field | Type | Description |
|---|---|---|
| message | string | Summary line, e.g. New post in <group_name>. |
| data.group_name | string | Name of the Facebook group or page. |
| data.group_id | string | Facebook group or page ID. |
| data.poster_name | string | Display name of the person who posted. |
| data.poster_url | string | Facebook profile URL of the poster. |
| data.post_url | string | URL of the post (Facebook permalink). |
| data.group_url | string | URL of the group or page. |
| data.post_id | string | Facebook post ID. |
| data.post_type | string | Either regular_post or marketplace. |
| data.body | string | Full text of the post. |
| data.images | array of strings | URLs of all images attached to the post (may be empty). |
| data.videos | array of strings | URLs of all videos attached to the post (may be empty). |
| data.timestamp | string | When we sent the notification (ISO 8601). |
Example payload
This is what n8n receives for each new post. Use these fields in your workflow (e.g. post to Slack, send email, add row to Google Sheets, send SMS via Twilio).
{
"message": "New post in Tampa Bay Homeowners",
"data": {
"group_name": "Tampa Bay Homeowners",
"group_id": "123456789",
"poster_name": "Maria Johnson",
"poster_url": "https://facebook.com/maria.johnson",
"post_url": "https://www.facebook.com/groups/123456789/permalink/987654321012345/",
"group_url": "https://www.facebook.com/groups/123456789",
"post_id": "987654321012345",
"post_type": "regular_post",
"body": "Anyone have a good HVAC person in St. Pete? Our AC went out last night",
"images": ["https://scontent.xx.fbcdn.net/v/.../image1.jpg", "https://.../image2.jpg"],
"videos": [],
"timestamp": "2026-02-11T14:30:00.000Z"
}
}Example use cases
You can use this webhook payload in n8n in several ways: post to Slack, send email, send SMS via Twilio, and post to Discord. Build a workflow with a Webhook trigger, add the branches you need, then add your webhook URL in Groups Watcher.
Frequently asked questions
How do I build an automation in n8n to send Facebook group posts there?
Create a new workflow in n8n and add a Webhook node as the first step. Set the method to POST and copy the webhook URL n8n shows. Sign up for Groups Watcher Pro, add the Facebook groups or pages you want to watch, and paste that URL as your notification webhook. Each time there is a new post, Groups Watcher sends the post details to n8n in under 60 seconds. After the Webhook node, add other nodes such as Slack, Gmail, HTTP Request, or databases, and map fields from the webhook body into those steps.
What is Groups Watcher?
Groups Watcher is a service that monitors Facebook groups and pages you choose and sends alerts in under 60 seconds when new posts appear. Pro customers can send each alert to n8n, email, Slack, a custom URL, or other channels documented in these guides.
Does n8n connect to Facebook groups by itself?
No. Groups Watcher runs the monitoring and sends one webhook request per post to the URL you configure. n8n receives that payload on your Webhook node.
Do I need to write code to use n8n with Groups Watcher?
No. You connect nodes visually. Copy the webhook URL into Groups Watcher, then map fields in later nodes. You can add a Code node later if you want custom logic.
Can I use Groups Watcher for brand mentions on Facebook?
Yes. Teams use Pro to watch groups and pages where people talk about a brand, product, or competitor. Add keywords or AI filtering so you see the conversations that matter. Most alerts reach you in under 60 seconds through email, webhooks, Slack, and the other channels in these guides.
Pro plan only. This integration uses the same webhook as the Pro plan. Need help? Contact support@groupswatcher.com.
View pricing