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.
Retrieve scraped data from your Facebook Private Group Posts Scraper runs.
Your API authentication token. Value: Token YOUR_API_KEY
Query Parameters
Hash of the squid to get results from.
Hash of a specific run (optional).
Page number (default: 1).
Results per page (default: 50, max: 100).
Result Fields
Direct URL to the post in the Facebook group. Example: https://www.facebook.com/groups/336266723393832/permalink/123456789/
Unique identifier for the Facebook post. Example: 123456789
Unique identifier for the Facebook group. Example: 336266723393832
Name of the Facebook group where the post was published. Example: My Group
Unique identifier of the post author on Facebook.
Display name of the post author. Example: John Doe
Full text content of the post.
Publication date and time of the post in ISO 8601 format. Example: 2026-03-19T11:27:00.000Z
Unix timestamp of when the post was published. Example: 1773919620
Total number of likes on the post. Example: 12
Total number of comments on the post. Example: 5
Number of times the post was shared. Example: 2
Number of Like reactions. Example: 10
Number of Love reactions. Example: 2
Number of Haha reactions. Example: 0
Number of Wow reactions. Example: 0
Number of Sad reactions. Example: 0
Number of Angry reactions. Example: 0
URL of the first image attached to the post.
URL of the second image attached to the post.
URL of the video attached to the post.
URL of the external link shared in the post.
Text of the first comment on the post.
Text of the second comment on the post.
Internal Facebook feedback identifier for the post.
Code Examples
curl -X GET "https://api.lobstr.io/v1/results?squid=YOUR_SQUID_HASH&page=1&limit=50" \
-H "Authorization: Token YOUR_API_KEY"
Response
{
"total_results": 42,
"limit": 50,
"page": 1,
"total_pages": 1,
"result_from": 1,
"result_to": 42,
"data": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"object": "result",
"squid": "YOUR_SQUID_HASH",
"run": "RUN_HASH",
"url": "https://www.facebook.com/groups/336266723393832/permalink/123456789/",
"post_id": "123456789",
"group_id": "336266723393832",
"group_title": "My Private Group",
"user_id": "987654321",
"user_name": "John Doe",
"text": "Hello everyone! Check out this great resource...",
"time": "2026-03-19T11:27:00.000Z",
"timestamp": 1773919620,
"likes_count": 12,
"comments_count": 5,
"shares_count": 2,
"reaction_like_count": 10,
"reaction_love_count": 2,
"reaction_haha_count": 0,
"reaction_wow_count": 0,
"reaction_sad_count": 0,
"reaction_angry_count": 0,
"image_1": null,
"image_2": null,
"video_url": null,
"link_attachment": "https://example.com/resource",
"comment_1": "Great post!",
"comment_2": "Thanks for sharing.",
"feedback_id": "ZmVlZGJhY2s6MTIzNDU2Nzg5",
"scraping_time": "2026-03-20T09:15:00.000Z"
}
],
"next": null,
"previous": null
}