# StableSocial Facebook Profile Reels

> StableSocial Facebook Profile Reels 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).

Fetches reels from a Facebook page profile, with pagination support, via pay-per-request scraping.

## Facts

- Endpoint: POST https://stablesocial.dev/api/sc/facebook/profile/reels
- 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-profile-reels-d05d65fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JKObvn32OPXLh17YMrOdk

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-profile-reels-d05d65fc -d '<json body>'
```

Example prompt: Can you pull all the reels from the Facebook page at facebook.com/NatGeo so I can see what video content they've been posting?

## When to prefer this

Choose this endpoint when you need to retrieve reels specifically from a Facebook page without setting up authentication or a subscription. It is ideal for one-off scraping tasks, competitive research, or building data pipelines around Facebook video content. Prefer this over browser automation when you need structured reel data quickly and cost-effectively at $0.06 per call.

## Known failure modes

- Invalid or non-existent Facebook page URL returns an error or empty result
- Private or restricted Facebook pages may return no data
- Missing required 'url' field causes a validation error
- Stale or invalid cursor/next_page_id causes pagination to fail or return unexpected results
- Rate limiting or upstream Facebook blocks may cause intermittent failures
- Payment failure (insufficient USDC) causes the request to be rejected before execution

## How this service works

Pay-per-request access to social media data from TikTok, Instagram, Facebook, Reddit, and LinkedIn. No auth, no subscriptions.

## Output

Returns a list of reels from the specified Facebook page, including reel metadata such as video details, engagement stats, and pagination tokens (cursor, next_page_id) to retrieve subsequent pages of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "minLength": 1,
   "description": "Facebook page URL"
  },
  "cursor": {
   "type": "string",
   "description": "To paginate through to the next page"
  },
  "next_page_id": {
   "type": "string",
   "description": "To paginate through to the next page"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stablesocial-facebook-profile-reels-d05d65fc/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)
