Skip to main content
GET
/
v1
/
results
Get Results
curl --request GET \
  --url https://api.lobstr.io/v1/results \
  --header 'Authorization: <authorization>'
{
  "url": "<string>",
  "post_id": "<string>",
  "group_id": "<string>",
  "group_title": "<string>",
  "user_id": "<string>",
  "user_name": "<string>",
  "text": "<string>",
  "time": "<string>",
  "timestamp": 123,
  "likes_count": 123,
  "comments_count": 123,
  "shares_count": 123,
  "reaction_like_count": 123,
  "reaction_love_count": 123,
  "reaction_haha_count": 123,
  "reaction_wow_count": 123,
  "reaction_sad_count": 123,
  "reaction_angry_count": 123,
  "image_1": "<string>",
  "image_2": "<string>",
  "video_url": "<string>",
  "link_attachment": "<string>",
  "comment_1": "<string>",
  "comment_2": "<string>",
  "feedback_id": "<string>"
}

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.

Headers

Authorization
string
required
Your API authentication token. Value: Token YOUR_API_KEY

Query Parameters

squid
string
required
Hash of the squid to get results from.
run
string
Hash of a specific run (optional).
page
integer
Page number (default: 1).
limit
integer
Results per page (default: 50, max: 100).

Result Fields

url
string
Direct URL to the post in the Facebook group. Example: https://www.facebook.com/groups/336266723393832/permalink/123456789/
post_id
string
Unique identifier for the Facebook post. Example: 123456789
group_id
string
Unique identifier for the Facebook group. Example: 336266723393832
group_title
string
Name of the Facebook group where the post was published. Example: My Group
user_id
string
Unique identifier of the post author on Facebook.
user_name
string
Display name of the post author. Example: John Doe
text
string
Full text content of the post.
time
string
Publication date and time of the post in ISO 8601 format. Example: 2026-03-19T11:27:00.000Z
timestamp
integer
Unix timestamp of when the post was published. Example: 1773919620
likes_count
integer
Total number of likes on the post. Example: 12
comments_count
integer
Total number of comments on the post. Example: 5
shares_count
integer
Number of times the post was shared. Example: 2
reaction_like_count
integer
Number of Like reactions. Example: 10
reaction_love_count
integer
Number of Love reactions. Example: 2
reaction_haha_count
integer
Number of Haha reactions. Example: 0
reaction_wow_count
integer
Number of Wow reactions. Example: 0
reaction_sad_count
integer
Number of Sad reactions. Example: 0
reaction_angry_count
integer
Number of Angry reactions. Example: 0
image_1
string
URL of the first image attached to the post.
image_2
string
URL of the second image attached to the post.
video_url
string
URL of the video attached to the post.
URL of the external link shared in the post.
comment_1
string
Text of the first comment on the post.
comment_2
string
Text of the second comment on the post.
feedback_id
string
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

200
{
  "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
}