Documentation Index
Fetch the complete documentation index at: https://docs.lobstr.io/llms.txt
Use this file to discover all available pages before exploring further.
Add URLs or inputs to your Facebook Private Group Posts Scraper squid. Each task object must include the required fields below.
This scraper requires a connected Facebook account. Go to your squid settings and link your Facebook cookies (c_user and xs) before running.
Your API authentication token. Value: Token YOUR_API_KEY
Must be application/json. Value: application/json
Body
Array of task objects. Each task supports the fields below.
Task Fields
URL of a Facebook group to collect posts from. Example: https://www.facebook.com/groups/336266723393832
Code Examples
curl -X POST "https://api.lobstr.io/v1/tasks" \
-H "Authorization: Token YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"squid": "YOUR_SQUID_HASH",
"tasks": [
{ "url": "https://www.facebook.com/groups/336266723393832" },
{ "url": "https://www.facebook.com/groups/another_group_id" }
]
}'
Response
{
"duplicated_count": 0,
"tasks": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"created_at": "2025-06-24T11:11:30.222467",
"is_active": true,
"params": {
"url": "https://www.facebook.com/groups/336266723393832"
},
"object": "task"
}
]
}