# StableSocial Facebook Group Posts Scraper

> StableSocial Facebook Group Posts Scraper is a paid API for AI agents from stablesocial.dev, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Scrapes and returns posts from a Facebook Group, with support for sorting and pagination

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/group/posts
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stablesocial-facebook-group-posts-scraper-49f5ff3e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cX-F6i6LySaYjjILVFFS9

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability stablesocial-facebook-group-posts-scraper-49f5ff3e -d '<json body>'
```

Example prompt: Pull the most recent posts from the Facebook group at facebook.com/groups/digitalmarketersunited — sort them by RECENT_ACTIVITY and give me the first page of results.

## When to prefer this

Choose this endpoint when you need structured post data from a Facebook Group — especially for monitoring community discussions, aggregating content for analysis, or paginating through post history. Prefer this over manual scraping or generic web-access tools when you need clean, structured output with sort controls and cursor-based pagination.

## Known failure modes

- Invalid or private group URL returns an error or empty result
- Expired or invalid cursor breaks pagination
- Group ID and URL mismatch may cause unexpected results
- Private/closed groups may not be accessible without appropriate credentials
- Rate limiting or platform-side blocking may return empty or error responses

## How this service works

Scrape Creators · Facebook — Facebook Group Posts

## Output

Returns a collection of Facebook group posts including post text, author details, timestamps, engagement metrics, and a pagination cursor for retrieving subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "The URL of the group"
  },
  "cursor": {
   "type": "string",
   "description": "The cursor to paginate to the next page"
  },
  "sort_by": {
   "enum": [
    "TOP_POSTS",
    "RECENT_ACTIVITY",
    "CHRONOLOGICAL",
    "CHRONOLOGICAL_LISTINGS"
   ],
   "type": "string",
   "description": "How to sort the posts"
  },
  "group_id": {
   "type": "string",
   "description": "The ID of the group"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-group-posts-scraper-49f5ff3e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stablesocial.dev](https://www.zero.xyz/host/stablesocial.dev/llms.txt)
